:root {
    /* Custom Colors */
    --promotions-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --promotions-card-bg: #11271B;
    --promotions-background: #08160F;
    --promotions-text-main: #F2FFF6;
    --promotions-text-secondary: #A7D9B8;
    --promotions-border: #2E7A4E;
    --promotions-glow: #57E38D;
    --promotions-gold: #F2C14E;
    --promotions-divider: #1E3A2A;
    --promotions-deep-green: #0A4B2C;

    /* Base colors from shared, assuming a dark background for body */
    --background-color: #08160F; /* Assuming this comes from shared or is the base */
    --text-color-on-dark: var(--promotions-text-main);
    --text-color-on-light: #333333; /* For light sections */
}

/* Base styles for the page content */
.page-promotions {
    font-family: 'Arial', sans-serif; /* Example font */
    color: var(--text-color-on-dark); /* Default text color for dark background */
    background-color: var(--promotions-background); /* Page specific background */
    line-height: 1.6;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    box-sizing: border-box;
    overflow: hidden; /* Ensure no overflow from image */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-promotions__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--promotions-gold); /* Gold color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Soft glow */
}

.page-promotions__description {
    font-size: 1.15rem;
    color: var(--promotions-text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 600px; /* Limit button group width */
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

.page-promotions__btn-primary {
    background: var(--promotions-button-gradient);
    color: var(--promotions-text-main); /* White-ish text for primary button */
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient on hover */
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background: none;
    color: var(--promotions-gold); /* Gold text for secondary button */
    border: 2px solid var(--promotions-gold);
    box-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
}

.page-promotions__btn-secondary:hover {
    background-color: var(--promotions-gold);
    color: var(--promotions-background); /* Dark text on gold hover */
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
    transform: translateY(-2px);
}

/* General Section Styles */
.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--promotions-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__text-block {
    font-size: 1.05rem;
    color: var(--promotions-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

/* Dark Background Sections */
.page-promotions__dark-section {
    background-color: var(--promotions-background);
    color: var(--promotions-text-main);
    padding: 80px 0;
}

/* Light Background Sections (for contrast, if needed, but current design is dark-themed) */
.page-promotions__light-bg {
    background-color: var(--promotions-card-bg); /* Using card bg for a slightly lighter dark section */
    color: var(--promotions-text-main);
    padding: 80px 0;
}

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

.page-promotions__promo-card.page-promotions__card {
    background-color: var(--promotions-card-bg);
    border: 1px solid var(--promotions-border);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--promotions-text-main); /* Ensure text is main color */
}

.page-promotions__promo-card.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.5rem;
    color: var(--promotions-gold);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.page-promotions__card-description {
    font-size: 0.95rem;
    color: var(--promotions-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    margin-top: auto; /* Push button to bottom */
    width: 100%; /* Make card button full width */
}

/* How-to-claim Section */
.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__step-item {
    background-color: var(--promotions-card-bg);
    border: 1px solid var(--promotions-border);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.page-promotions__step-item:hover {
    transform: translateY(-3px);
}

.page-promotions__step-title {
    font-size: 1.4rem;
    color: var(--promotions-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__step-description {
    font-size: 1rem;
    color: var(--promotions-text-secondary);
}

.page-promotions__cta-buttons--center {
    margin-top: 40px;
}

/* Terms and Conditions Section */
.page-promotions__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
    color: var(--promotions-text-secondary);
}

.page-promotions__terms-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-promotions__terms-item::marker {
    color: var(--promotions-gold); /* Gold bullet points */
}

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: var(--promotions-card-bg);
    border: 1px solid var(--promotions-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--promotions-text-main);
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-promotions__faq-item summary:hover {
    background-color: rgba(var(--promotions-deep-green), 0.5); /* Slightly lighter on hover */
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    color: var(--promotions-gold); /* Gold for question text */
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--promotions-glow); /* Glow color for toggle icon */
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--promotions-text-secondary);
    line-height: 1.6;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    background-color: var(--promotions-deep-green); /* Darker background when open */
}

/* Final CTA Section */
.page-promotions__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions__cta-final-content {
    background-color: var(--promotions-card-bg);
    border: 1px solid var(--promotions-border);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-promotions__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-promotions__description {
        font-size: 1rem;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-promotions__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-promotions__card-title {
        font-size: 1.3rem;
    }
    .page-promotions__card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* General mobile padding */
    .page-promotions__container {
        padding: 0 15px;
    }

    /* Hero Section */
    .page-promotions__hero-section {
        padding: 10px 15px 40px;
    }
    .page-promotions__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-promotions__description {
        font-size: 0.95rem;
    }
    .page-promotions__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 20px; /* Adjust padding for button text */
        padding-right: 20px;
    }

    /* Section padding */
    .page-promotions__dark-section,
    .page-promotions__light-bg {
        padding: 50px 0;
    }

    /* Images in content */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Containers for images, videos, cards */
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper,
    .page-promotions__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr; /* Single column for cards */
        gap: 20px;
    }
    .page-promotions__card-image {
        height: 180px; /* Adjust card image height */
    }
    .page-promotions__card-content {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.2rem;
    }
    .page-promotions__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }
    .page-promotions__cta-final-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-promotions__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-promotions__faq-toggle {
        font-size: 1.5rem;
    }
}