.page-promo {
    color: #333333; /* Dark text for light body background #f8f8f8 */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

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

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

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

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

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

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

.page-promo__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #FFD700;
}

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

.page-promo__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promo__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.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: 1;
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: bold;
}

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

.page-promo__overview-section, .page-promo__how-to-claim-section, .page-promo__featured-games-section, .page-promo__why-choose-section, .page-promo__faq-section, .page-promo__final-cta-section {
    padding: 60px 0;
}

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

.page-promo__promo-card, .page-promo__game-card, .page-promo__advantage-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promo__promo-card:hover, .page-promo__game-card:hover, .page-promo__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-promo__card-image, .page-promo__game-image, .page-promo__step-image, .page-promo__advantage-icon {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure it takes full width */
}

.page-promo__advantage-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.page-promo__card-title, .page-promo__game-title, .page-promo__step-title, .page-promo__advantage-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo__card-description, .page-promo__game-description, .page-promo__step-description, .page-promo__advantage-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-promo__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.page-promo__step-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promo__action-center {
    text-align: center;
    margin-top: 60px;
}

.page-promo__action-text {
    font-size: 1.2em;
    color: #0A2463;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promo__faq-accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promo__faq-question {
    width: 100%;
    background-color: #FFD700;
    color: #0A2463;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promo__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promo__faq-question.active {
    background-color: #e6c200;
}

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

.page-promo__faq-answer {
    padding: 0 25px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #444444;
    font-size: 0.95em;
}

.page-promo__final-cta-section {
    background-color: #0A2463;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-promo__final-cta-section .page-promo__section-title {
    color: #FFD700;
}

.page-promo__final-cta-section .page-promo__section-intro {
    color: #f0f0f0;
}

.page-promo__final-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.page-promo__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__hero-description {
        font-size: 1.2em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-promo__promo-grid, .page-promo__game-grid, .page-promo__advantage-grid, .page-promo__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promo__card-image, .page-promo__game-image, .page-promo__step-image, .page-promo__advantage-icon {
        max-width: 100%;
        height: auto;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__section-intro {
        font-size: 1em;
    }
    .page-promo__final-actions {
        flex-direction: column;
        gap: 15px;
    }
    /* Ensure all images in content area are responsive and not smaller than 200px */
    .page-promo img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    /* Override specific smaller dimensions if they exist, to ensure minimum size */
    .page-promo__advantage-icon {
        width: auto; /* Reset width to be flexible */
        height: auto;
        max-width: 200px;
        max-height: 200px;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-section {
        padding: 60px 15px;
    }
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.95em;
    }
    .page-promo__container {
        padding: 0 15px;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promo__faq-answer p {
        padding: 10px 0;
    }
}