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

.page-promo__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #4B0082; /* Auxiliary color for a deep background */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding-bottom: 80px;
}

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

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

.page-promo__hero-content {
    position: relative;
    z-index: 3;
}

.page-promo__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold main color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-promo__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #4B0082; /* Royal purple text for contrast */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-promo__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    color: #330066;
}

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

.page-promo__section-title {
    font-size: 2.8em;
    color: #4B0082; /* Royal purple for section titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

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

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

.page-promo__why-choose-section {
    background-color: #f9f9f9;
}

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

.page-promo__feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

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

.page-promo__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-promo__feature-title {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 15px;
}

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

.page-promo__featured-section {
    background-color: #eef0f4;
}

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

.page-promo__promo-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.page-promo__promo-content {
    padding: 30px;
    text-align: center;
}

.page-promo__promo-title {
    font-size: 2em;
    color: #4B0082;
    margin-bottom: 15px;
}

.page-promo__promo-text {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

.page-promo__promo-button {
    display: inline-block;
    background-color: #4B0082; /* Royal purple button */
    color: #FFD700; /* Gold text */
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #4B0082;
}

.page-promo__promo-button:hover {
    background-color: #330066;
    transform: translateY(-2px);
    color: #ffe680;
}

.page-promo__how-to-claim-section {
    background: linear-gradient(135deg, #4B0082 0%, #6a00a8 100%); /* Gradient background */
    color: #ffffff;
}

.page-promo__how-to-claim-section .page-promo__section-title {
    color: #FFD700;
}

.page-promo__how-to-claim-section .page-promo__section-intro {
    color: #f0f0f0;
}

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

.page-promo__step-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.page-promo__step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #FFD700;
    color: #4B0082;
    border-radius: 50%;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

.page-promo__cta-button--bottom {
    margin-top: 50px;
}

.page-promo__faq-section {
    background-color: #f9f9f9;
}

.page-promo__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px 30px;
    border-left: 5px solid #FFD700;
}

.page-promo__faq-question {
    font-size: 1.6em;
    color: #4B0082;
    margin-bottom: 10px;
}

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

.page-promo__faq-answer a {
    color: #4B0082;
    text-decoration: underline;
}

.page-promo__responsible-gaming-section {
    background-color: #4B0082;
    color: #ffffff;
    text-align: center;
}

.page-promo__responsible-gaming-section .page-promo__section-title {
    color: #FFD700;
}

.page-promo__responsible-gaming-section .page-promo__section-intro {
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-promo__responsible-gaming-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo__responsible-gaming-link:hover {
    background-color: #FFD700;
    color: #4B0082;
}

.page-promo__final-cta-section {
    text-align: center;
    padding-bottom: 80px;
    background-color: #eef0f4;
}

.page-promo__cta-button--final {
    background-color: #4B0082;
    color: #FFD700;
    border-color: #4B0082;
}

.page-promo__cta-button--final:hover {
    background-color: #330066;
    color: #ffe680;
    border-color: #330066;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__section-title {
        font-size: 2.5em;
    }
    .page-promo__feature-title {
        font-size: 1.6em;
    }
    .page-promo__promo-title {
        font-size: 1.8em;
    }
    .page-promo__step-title {
        font-size: 1.6em;
    }
    .page-promo__faq-question {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-top: var(--header-offset, 80px);
        padding: 40px 15px;
    }
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promo__section-title {
        font-size: 2em;
        padding-top: 20px;
    }
    .page-promo__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promo__container {
        padding: 20px 15px;
    }
    .page-promo__features-grid, .page-promo__promo-grid, .page-promo__steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-promo__feature-card, .page-promo__promo-card, .page-promo__step-card, .page-promo__faq-item {
        padding: 25px;
    }
    .page-promo__promo-image {
        height: 220px;
    }
    .page-promo__promo-content {
        padding: 25px;
    }
    .page-promo__promo-button {
        padding: 10px 25px;
        font-size: 0.95em;
    }
    .page-promo__step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.8em;
    }
    .page-promo__feature-image, .page-promo__promo-image, .page-promo__step-card img, .page-promo__faq-item img {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and do not overflow */
    }
    .page-promo__why-choose-section, .page-promo__featured-section, .page-promo__how-to-claim-section, .page-promo__faq-section, .page-promo__responsible-gaming-section, .page-promo__final-cta-section {
        padding: 40px 0;
    }
    /* Ensure content images are not smaller than 200px where applicable, and responsive */
    .page-promo__feature-image, .page-promo__promo-image {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__feature-title, .page-promo__promo-title, .page-promo__step-title, .page-promo__faq-question {
        font-size: 1.4em;
    }
}

/* Ensure all images within .page-promo are at least 200px wide or tall, and responsive */
.page-promo img {
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    object-fit: cover; /* Maintain aspect ratio and cover area */
}

/* Specific overrides for smaller images if they exist and need to be responsive without being too small */
/* The image requirements state no small icons, so this is a general safeguard */
@media (max-width: 768px) {
    .page-promo__hero-image, .page-promo__feature-image, .page-promo__promo-image {
        max-width: 100%;
        height: auto; 
    }
}