:root {
    --page-promotions-bg-primary: #08160F;
    --page-promotions-card-bg: #11271B;
    --page-promotions-text-main: #F2FFF6;
    --page-promotions-text-secondary: #A7D9B8;
    --page-promotions-border-color: #2E7A4E;
    --page-promotions-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-promotions-glow-color: #57E38D;
    --page-promotions-gold-color: #F2C14E;
    --page-promotions-divider-color: #1E3A2A;
    --page-promotions-deep-green: #0A4B2C;
    --page-promotions-primary-color: #11A84E; /* Main color */
    --page-promotions-secondary-color: #22C768; /* Auxiliary color */
}

.page-promotions {
    background-color: var(--page-promotions-bg-primary);
    color: var(--page-promotions-text-main); /* Ensure light text on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom before footer */
}

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

.page-promotions__container--center {
    text-align: center;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden;
    background-color: var(--page-promotions-deep-green); /* Darker background for hero */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for image */
    margin-bottom: 30px; /* Space between image and content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height for aesthetic */
    border-radius: 8px;
}

.page-promotions__hero-content {
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: var(--page-promotions-gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

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

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

/* General Section Styling */
.page-promotions__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-promotions-divider-color);
}

.page-promotions__section:last-of-type {
    border-bottom: none;
}

.page-promotions__section-title {
    font-size: 2.5rem;
    color: var(--page-promotions-text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--page-promotions-primary-color);
    border-radius: 2px;
}

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

.page-promotions__text-block strong {
    color: var(--page-promotions-text-main);
}

.page-promotions__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Promotion Types 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 {
    background-color: var(--page-promotions-card-bg);
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 15px var(--page-promotions-glow-color);
}

.page-promotions__card-title {
    font-size: 1.8rem;
    color: var(--page-promotions-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 1rem;
    color: var(--page-promotions-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to take up space */
}

.page-promotions__card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions__card-list li {
    font-size: 0.95rem;
    color: var(--page-promotions-text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-promotions__card-list li::before {
    content: '✅'; /* Checkmark */
    position: absolute;
    left: 0;
    color: var(--page-promotions-glow-color);
}

/* Terms and Conditions */
.page-promotions__terms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__term-item {
    background-color: var(--page-promotions-card-bg);
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-promotions__term-title {
    font-size: 1.5rem;
    color: var(--page-promotions-text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

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

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

.page-promotions__steps-list li {
    background-color: var(--page-promotions-card-bg);
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-promotions__steps-list li:last-child {
    margin-bottom: 0;
}

.page-promotions__step-title {
    font-size: 1.6rem;
    color: var(--page-promotions-gold-color);
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.page-promotions__step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: var(--page-promotions-primary-color);
    color: var(--page-promotions-text-main);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-promotions__steps-list {
    counter-reset: step-counter;
}

.page-promotions__step-description {
    font-size: 1.1rem;
    color: var(--page-promotions-text-secondary);
    padding-left: 50px; /* Align with title text */
}

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

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

.page-promotions__faq-item:last-child {
    margin-bottom: 0;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    color: var(--page-promotions-text-main);
    font-weight: bold;
    cursor: pointer;
    background-color: var(--page-promotions-deep-green);
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: var(--page-promotions-primary-color);
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions__faq-question::marker {
    display: none;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-promotions-glow-color);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    content: '−'; /* Change to minus when open */
}

.page-promotions__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1rem;
    color: var(--page-promotions-text-secondary);
    border-top: 1px solid var(--page-promotions-border-color);
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box; /* Crucial for responsiveness */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions__btn-primary {
    background: var(--page-promotions-btn-gradient);
    color: var(--page-promotions-text-main); /* White text on dark gradient */
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 10px var(--page-promotions-glow-color);
    filter: brightness(1.1);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: var(--page-promotions-primary-color);
    border: 2px solid var(--page-promotions-primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-promotions__btn-secondary:hover {
    background-color: var(--page-promotions-primary-color);
    color: var(--page-promotions-text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 8px var(--page-promotions-glow-color);
}

/* Responsive Images & Videos */
.page-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-promotions video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px !important;
    }

    .page-promotions__hero-section {
        padding: 10px 0 40px 0 !important;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-promotions__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to prevent buttons from touching screen edges */
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__section {
        padding: 40px 0 !important;
    }

    .page-promotions__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 1rem;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__promo-card {
        padding: 25px;
    }

    .page-promotions__card-title {
        font-size: 1.5rem;
    }

    .page-promotions__terms-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__step-title {
        font-size: 1.4rem;
    }

    .page-promotions__step-description {
        font-size: 1rem;
        padding-left: 0; /* Remove padding for better mobile flow */
    }
    
    .page-promotions__steps-list li {
        padding: 20px;
    }

    .page-promotions__step-title::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .page-promotions__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-promotions__faq-answer {
        font-size: 0.95rem;
        padding: 10px 20px 15px 20px;
    }

    /* Mobile image and video specific overrides */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .page-promotions video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Video section top padding adjustment for mobile */
    .page-promotions__video-section {
        padding-top: 10px !important; /* body already handles --header-offset, this is decorative */
    }
    
    /* Ensure all containers with images/videos/buttons are correctly sized */
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-image-wrapper,
    .page-promotions__promo-card,
    .page-promotions__term-item,
    .page-promotions__faq-item,
    .page-promotions__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
}