/* style/promo.css */
.page-promo {
    color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-promo__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Login button color for emphasis */
    line-height: 1.2;
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-promo__hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-promo__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.page-promo__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-promo__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-promo__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__button--login:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-promo__content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-promo__section-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-promo__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
    color: #555555;
}

.page-promo__welcome-bonus-section, 
.page-promo__daily-rewards-section, 
.page-promo__vip-section, 
.page-promo__special-events-section, 
.page-promo__how-to-claim-section, 
.page-promo__faq-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-promo__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promo__bonus-card {
    background-color: #F8F8F8;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promo__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    display: block;
}

.page-promo__card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__card-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.page-promo__button--claim, .page-promo__button--vip {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 30px;
}

.page-promo__button--claim:hover, .page-promo__button--vip:hover {
    background-color: #000000;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-promo__vip-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo__vip-benefits {
    list-style: none;
    padding: 0;
    margin: 40px auto 60px auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-promo__vip-item {
    background-color: #F0F0F0;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 500;
    color: #000000;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promo__event-card {
    max-width: 800px;
    margin: 50px auto;
    background-color: #F8F8F8;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-promo__how-to-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo__claim-steps {
    list-style: none;
    padding: 0;
    margin: 40px auto 60px auto;
    max-width: 800px;
}

.page-promo__step-item {
    background-color: #F0F0F0;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333333;
    counter-increment: step-counter;
    position: relative;
    padding-left: 55px;
}

.page-promo__step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FCBC45;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-promo__faq-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promo__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FCBC45;
    transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    display: none;
    margin-top: 15px;
}

.page-promo__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 2.8em;
    }

    .page-promo__section-title {
        font-size: 2.2em;
    }

    .page-promo__card-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-bottom: 40px;
    }

    .page-promo__hero-title {
        font-size: 2.2em;
    }

    .page-promo__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promo__button {
        width: 80%;
        margin: 0 auto;
        min-width: unset;
    }

    .page-promo__content-container {
        padding: 40px 15px;
    }

    .page-promo__section-title {
        font-size: 1.8em;
    }

    .page-promo__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }

    .page-promo__bonus-grid {
        grid-template-columns: 1fr;
    }

    .page-promo__card-image {
        height: 200px;
    }

    .page-promo__vip-benefits {
        grid-template-columns: 1fr;
    }

    .page-promo__claim-steps {
        max-width: 100%;
    }

    .page-promo__step-item {
        font-size: 1em;
        padding-left: 50px;
    }

    .page-promo__faq-question {
        font-size: 1.2em;
    }

    /* Mobile overflow prevention */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }

    .page-promo__button {
        font-size: 1em;
        padding: 12px 20px;
    }

    .page-promo__section-title {
        font-size: 1.6em;
    }

    .page-promo__card-title {
        font-size: 1.3em;
    }

    .page-promo__faq-question {
        font-size: 1.1em;
    }
}