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

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-promotions {
    background-color: var(--color-background-dark); /* Ensure consistency if body background is not set or overridden */
    color: var(--color-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-promotions a {
    color: var(--color-secondary);
    text-decoration: none;
}

.page-promotions a:hover {
    text-decoration: underline;
    color: var(--color-glow);
}

.page-promotions__highlight {
    color: var(--color-gold);
    font-weight: bold;
}

/* Section base styles */
.page-promotions__section {
    padding: 60px 20px;
    text-align: center;
}

.page-promotions__section.page-promotions__dark-bg {
    background-color: var(--color-deep-green); /* A slightly different dark green for variation */
    color: var(--color-text-main);
}

.page-promotions__container {
    width: 100%; /* Ensure desktop width is 100% before max-width */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--color-gold);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.page-promotions__dark-bg .page-promotions__section-title {
    color: var(--color-gold);
}

.page-promotions__description,
.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-promotions__dark-bg .page-promotions__description,
.page-promotions__dark-bg .page-promotions__text-block {
    color: var(--color-text-secondary);
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    background-color: var(--color-background-dark); /* Ensure consistent background */
    overflow: hidden; /* Prevent content overflow */
}

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

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

.page-promotions__hero-content {
    max-width: 900px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    background: rgba(17, 40, 27, 0.9); /* Slightly transparent card bg */
    border: 1px solid var(--color-border);
    box-shadow: 0 0 20px var(--color-glow); /* Soft glow */
    margin-top: -80px; /* Overlap with image slightly */
    position: relative;
    z-index: 1;
    color: var(--color-text-main);
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.2em); /* Clamp for responsive H1 */
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* CTA Buttons */
.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-promotions__cta-buttons--center {
    justify-content: center;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box; /* Include padding in width */
    max-width: 100%; /* Ensure responsiveness */
}

.page-promotions__btn-primary {
    background: var(--color-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.2);
}

.page-promotions__btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-background-dark); /* Dark text on light button */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.4);
}

.page-promotions__btn-small {
    padding: 10px 20px;
    font-size: 0.95em;
}

/* Promotion Types Grid */
.page-promotions__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-text-secondary);
    height: 100%; /* Ensure cards are same height */
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--color-glow);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below */
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-promotions__card-text {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

/* How-to-claim steps */
.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__step-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: var(--color-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.page-promotions__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 15px;
    background: var(--color-deep-green);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-border);
}

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

.page-promotions__step-text {
    font-size: 1em;
    margin-bottom: 0;
}

/* List styles */
.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__list-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 18px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.page-promotions__list-item strong {
    color: var(--color-gold);
    margin-right: 10px;
}

.page-promotions__list--icon .page-promotions__list-item::before {
    content: '✅'; /* Green checkmark */
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
    color: var(--color-glow);
    flex-shrink: 0;
}


/* FAQ Section */
.page-promotions__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-promotions__faq-item[open] {
    background-color: var(--color-deep-green);
    border-color: var(--color-secondary);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-text-main);
    background-color: var(--color-card-bg);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    border-bottom: 1px solid var(--color-border);
    color: var(--color-gold);
}

.page-promotions__faq-question:hover {
    color: var(--color-gold);
}

.page-promotions__faq-qtext {
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-secondary);
    font-weight: normal;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    color: var(--color-gold);
}

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

/* Conclusion Section */
.page-promotions__conclusion-section {
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__hero-image-wrapper {
        max-height: 550px;
    }
    .page-promotions__hero-content {
        margin-top: -60px;
        padding: 25px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 4.5vw, 2.8em);
    }
}

@media (max-width: 768px) {
    /* Image responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Container responsiveness */
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-section,
    .page-promotions__hero-content,
    .page-promotions__promotion-cards,
    .page-promotions__steps-grid,
    .page-promotions__faq-list,
    .page-promotions__list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    .page-promotions__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
        padding-bottom: 40px !important;
    }

    .page-promotions__hero-image-wrapper {
        max-height: 400px;
        margin-bottom: 20px;
    }

    .page-promotions__hero-content {
        margin-top: -40px;
        padding: 20px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.2em);
    }

    .page-promotions__description,
    .page-promotions__text-block,
    .page-promotions__card-text,
    .page-promotions__step-text,
    .page-promotions__list-item,
    .page-promotions__faq-answer p {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    /* Button responsiveness */
    .page-promotions__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        width: 100% !important;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: calc(100% - 30px) !important; /* Account for container padding */
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__step-title {
        font-size: 1.2em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-toggle {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-image-wrapper {
        max-height: 250px;
    }
    .page-promotions__hero-content {
        margin-top: -20px;
        padding: 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 8vw, 1.8em);
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-buttons {
        gap: 10px !important;
    }
}