.page-promo {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px);
}

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

.page-promo__hero-section {
    background-color: #000000; /* Dark background for hero section */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

.page-promo__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-promo__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-promo__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    text-align: center;
    white-space: nowrap;
}

.page-promo__button--primary {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

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

.page-promo__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-promo__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promo__button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-promo__button--center {
    margin: 40px auto 0;
    display: table;
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin: 60px 0 20px;
}

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

.page-promo__welcome-bonus-section,
.page-promo__daily-rewards-section,
.page-promo__exclusive-events-section,
.page-promo__how-to-claim-section,
.page-promo__terms-faq-section,
.page-promo__call-to-action-section {
    padding: 60px 0;
}

.page-promo__welcome-bonus-section {
    background-color: #f8f8f8;
}

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

.page-promo__bonus-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too small */
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

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

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

.page-promo__disclaimer {
    font-size: 0.9em;
    color: #888888;
    text-align: center;
    margin-top: 40px;
}

.page-promo__feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-promo__feature-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
    transform: translateX(10px);
}

.page-promo__feature-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-right: 30px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promo__feature-content {
    flex-grow: 1;
}

.page-promo__feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__feature-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

.page-promo__exclusive-events-section {
    background-color: #f8f8f8;
}

.page-promo__event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__event-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__event-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promo__event-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.page-promo__event-title {
    font-size: 1.7em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__event-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.page-promo__how-to-claim-section {
    background-color: #ffffff;
}

.page-promo__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-promo__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.page-promo__step-number {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__step-content {
    flex-grow: 1;
}

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

.page-promo__step-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 15px;
}

.page-promo__terms-faq-section {
    background-color: #f8f8f8;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-promo__terms-faq-section > .page-promo__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.page-promo__column {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.page-promo__column .page-promo__section-title {
    margin-top: 0;
    text-align: left;
    font-size: 2em;
}

.page-promo__column .page-promo__section-description {
    text-align: left;
    margin-bottom: 30px;
}

.page-promo__terms-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.page-promo__terms-item {
    font-size: 1em;
    line-height: 1.8;
    color: #555555;
}

.page-promo__faq-item {
    margin-bottom: 25px;
}

.page-promo__faq-question {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

.page-promo__call-to-action-section {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-promo__call-to-action-section .page-promo__container {
    position: relative;
    z-index: 1;
}

.page-promo__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-promo__cta-title {
    font-size: 3em;
    color: #FCBC45; /* Login color */
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__cta-description {
    font-size: 1.2em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

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

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

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

    .page-promo__event-card {
        flex-direction: column;
    }

    .page-promo__event-image {
        max-width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }

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

    .page-promo__hero-description {
        font-size: 1em;
    }

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

    .page-promo__button {
        width: 100%;
    }

    .page-promo__section-title {
        font-size: 1.8em;
        margin: 40px 0 15px;
    }

    .page-promo__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

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

    .page-promo__feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .page-promo__feature-image {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .page-promo__event-card {
        flex-direction: column;
    }

    .page-promo__event-image {
        max-width: 100%;
        height: 200px;
    }

    .page-promo__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-promo__step-number {
        margin-bottom: 15px;
    }

    .page-promo__terms-faq-section > .page-promo__container {
        grid-template-columns: 1fr;
    }

    .page-promo__column .page-promo__section-title {
        text-align: center;
    }

    .page-promo__column .page-promo__section-description {
        text-align: center;
    }

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

    .page-promo__cta-description {
        font-size: 1em;
    }

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

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

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

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

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