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

.page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-bottom: 60px;
    text-align: center;
    background-color: #FFFFFF;
}

.page-promo__hero-content {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.page-promo__hero-title {
    font-size: 3.2em;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

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

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

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

.page-promo__button--register {
    background-color: #000000;
    color: #FFFFFF;
}

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

.page-promo__button--login {
    background-color: #FCBC45;
    color: #000000;
}

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

.page-promo__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promo__featured-promotions,
.page-promo__terms-conditions,
.page-promo__faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
    font-weight: bold;
}

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

.page-promo__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

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

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

.page-promo__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

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

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

.page-promo__card-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
    color: #FCBC45;
}

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

.page-promo__button--view-details,
.page-promo__button--claim-now,
.page-promo__button--play-now,
.page-promo__button--deposit-now,
.page-promo__button--learn-more {
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    font-size: 0.95em;
    align-self: flex-start;
    margin-top: auto;
}

.page-promo__button--view-details:hover,
.page-promo__button--claim-now:hover,
.page-promo__button--play-now:hover,
.page-promo__button--deposit-now:hover,
.page-promo__button--learn-more:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__terms-content,
.page-promo__faq-list {
    padding: 20px 0 40px 0;
}

.page-promo__terms-subtitle {
    font-size: 1.8em;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo__terms-paragraph {
    font-size: 1.05em;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-promo__terms-paragraph a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promo__terms-paragraph a:hover {
    color: #FCBC45;
}

.page-promo__call-to-action {
    text-align: center;
    padding: 40px 0 60px 0;
}

.page-promo__button--full-width {
    background-color: #000000;
    color: #FFFFFF;
    padding: 18px 40px;
    font-size: 1.2em;
    min-width: 300px;
}

.page-promo__button--full-width:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 2.8em;
    }
    .page-promo__section-title {
        font-size: 2.2em;
    }
    .page-promo__promotion-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-bottom: 40px;
    }
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-promo__hero-image {
        margin-top: 30px;
    }
    .page-promo__featured-promotions,
    .page-promo__terms-conditions,
    .page-promo__faq-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    .page-promo__section-title {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .page-promo__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promo__promotion-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__card-image {
        height: 200px;
    }
    .page-promo__card-title {
        font-size: 1.4em;
    }
    .page-promo__terms-subtitle {
        font-size: 1.5em;
    }
    .page-promo__terms-paragraph,
    .page-promo__faq-answer {
        font-size: 0.95em;
    }
    .page-promo__faq-question {
        font-size: 1.15em;
    }
    .page-promo__button--full-width {
        font-size: 1.1em;
        padding: 15px 30px;
        min-width: unset;
        width: 100%;
    }
    /* 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__hero-actions {
        gap: 10px;
    }
    .page-promo__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promo__promotion-card {
        padding: 0;
    }
    .page-promo__card-content {
        padding: 20px;
    }
    .page-promo__card-title {
        font-size: 1.2em;
    }
    .page-promo__button--view-details,
    .page-promo__button--claim-now,
    .page-promo__button--play-now,
    .page-promo__button--deposit-now,
    .page-promo__button--learn-more {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promo__terms-subtitle {
        font-size: 1.3em;
    }
    .page-promo__faq-question {
        font-size: 1em;
    }
}