/* style/blog-latest-ee88-promotions-guide.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-latest-ee88-promotions-guide {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-latest-ee88-promotions-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.page-blog-latest-ee88-promotions-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-blog-latest-ee88-promotions-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
}

.page-blog-latest-ee88-promotions-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-main);
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-blog-latest-ee88-promotions-guide__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-ee88-promotions-guide__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-blog-latest-ee88-promotions-guide__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-latest-ee88-promotions-guide__btn-primary,
.page-blog-latest-ee88-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-latest-ee88-promotions-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-ee88-promotions-guide__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-latest-ee88-promotions-guide__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-latest-ee88-promotions-guide__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-ee88-promotions-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-latest-ee88-promotions-guide__dark-bg {
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-blog-latest-ee88-promotions-guide__light-bg {
    background-color: #f8f9fa;
    color: #333333;
}

.page-blog-latest-ee88-promotions-guide__text-contrast-fix {
    color: #333333;
}

.page-blog-latest-ee88-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-latest-ee88-promotions-guide__section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-blog-latest-ee88-promotions-guide__dark-bg .page-blog-latest-ee88-promotions-guide__section-title {
    color: var(--gold-color);
}

.page-blog-latest-ee88-promotions-guide__section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.page-blog-latest-ee88-promotions-guide__light-bg .page-blog-latest-ee88-promotions-guide__section-description {
    color: #555555;
}

.page-blog-latest-ee88-promotions-guide__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-latest-ee88-promotions-guide__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
}

.page-blog-latest-ee88-promotions-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
}

.page-blog-latest-ee88-promotions-guide__card-title {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-latest-ee88-promotions-guide__card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.page-blog-latest-ee88-promotions-guide__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-gradient);
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-blog-latest-ee88-promotions-guide__card-button:hover {
    filter: brightness(1.1);
}

.page-blog-latest-ee88-promotions-guide__content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: block;
}

.page-blog-latest-ee88-promotions-guide__image-center {
    margin-left: auto;
    margin-right: auto;
}

.page-blog-latest-ee88-promotions-guide__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.page-blog-latest-ee88-promotions-guide__step-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-blog-latest-ee88-promotions-guide__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-ee88-promotions-guide__step-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-latest-ee88-promotions-guide__step-text {
    font-size: 1rem;
    color: #555555;
}

.page-blog-latest-ee88-promotions-guide__cta-center {
    margin-top: 40px;
    text-align: center;
}

.page-blog-latest-ee88-promotions-guide__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-blog-latest-ee88-promotions-guide__list-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
}

.page-blog-latest-ee88-promotions-guide__list-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-latest-ee88-promotions-guide__list-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-blog-latest-ee88-promotions-guide__advice-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-blog-latest-ee88-promotions-guide__advice-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-latest-ee88-promotions-guide__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-blog-latest-ee88-promotions-guide__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-ee88-promotions-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold-color);
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-blog-latest-ee88-promotions-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-latest-ee88-promotions-guide__faq-question:hover {
    background-color: var(--primary-color);
}

.page-blog-latest-ee88-promotions-guide__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-latest-ee88-promotions-guide__faq-item[open] .page-blog-latest-ee88-promotions-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-latest-ee88-promotions-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--divider-color);
}

.page-blog-latest-ee88-promotions-guide__faq-answer p {
    margin: 0;
}

.page-blog-latest-ee88-promotions-guide__cta-section {
    padding: 80px 0;
    background-color: var(--deep-green-color);
}

.page-blog-latest-ee88-promotions-guide__cta-section .page-blog-latest-ee88-promotions-guide__section-title {
    color: var(--gold-color);
}

.page-blog-latest-ee88-promotions-guide__cta-section .page-blog-latest-ee88-promotions-guide__section-description {
    color: var(--text-secondary);
}

.page-blog-latest-ee88-promotions-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-latest-ee88-promotions-guide__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-latest-ee88-promotions-guide__section-title {
        font-size: 2rem;
    }
    .page-blog-latest-ee88-promotions-guide__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-latest-ee88-promotions-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-latest-ee88-promotions-guide__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-blog-latest-ee88-promotions-guide__hero-content {
        padding: 20px;
    }
    .page-blog-latest-ee88-promotions-guide__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-latest-ee88-promotions-guide__hero-description {
        font-size: 1rem;
    }
    .page-blog-latest-ee88-promotions-guide__hero-cta,
    .page-blog-latest-ee88-promotions-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-latest-ee88-promotions-guide__btn-primary,
    .page-blog-latest-ee88-promotions-guide__btn-secondary,
    .page-blog-latest-ee88-promotions-guide a[class*="button"],
    .page-blog-latest-ee88-promotions-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-latest-ee88-promotions-guide__section {
        padding: 40px 0;
    }
    .page-blog-latest-ee88-promotions-guide__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-latest-ee88-promotions-guide__section-title {
        font-size: 1.8rem;
    }
    .page-blog-latest-ee88-promotions-guide__section-description {
        font-size: 1rem;
    }
    .page-blog-latest-ee88-promotions-guide__grid,
    .page-blog-latest-ee88-promotions-guide__steps {
        grid-template-columns: 1fr;
    }
    .page-blog-latest-ee88-promotions-guide__card,
    .page-blog-latest-ee88-promotions-guide__step-item,
    .page-blog-latest-ee88-promotions-guide__list-item,
    .page-blog-latest-ee88-promotions-guide__advice-item,
    .page-blog-latest-ee88-promotions-guide__faq-item {
        padding: 20px;
    }
    .page-blog-latest-ee88-promotions-guide__card-title,
    .page-blog-latest-ee88-promotions-guide__step-title,
    .page-blog-latest-ee88-promotions-guide__list-title {
        font-size: 1.3rem;
    }
    .page-blog-latest-ee88-promotions-guide__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-blog-latest-ee88-promotions-guide__faq-answer {
        padding: 15px 20px;
    }
    .page-blog-latest-ee88-promotions-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-latest-ee88-promotions-guide__video-section,
    .page-blog-latest-ee88-promotions-guide__video-container,
    .page-blog-latest-ee88-promotions-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-blog-latest-ee88-promotions-guide__hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-blog-latest-ee88-promotions-guide__section-title {
        font-size: 1.6rem;
    }
    .page-blog-latest-ee88-promotions-guide__hero-cta .page-blog-latest-ee88-promotions-guide__btn-primary,
    .page-blog-latest-ee88-promotions-guide__hero-cta .page-blog-latest-ee88-promotions-guide__btn-secondary {
        padding: 12px 25px;
    }
    .page-blog-latest-ee88-promotions-guide__card-title,
    .page-blog-latest-ee88-promotions-guide__step-title,
    .page-blog-latest-ee88-promotions-guide__list-title {
        font-size: 1.2rem;
    }
}