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

    /* Primary and secondary brand colors */
    --primary-color: #11A84E;
    --secondary-color: #22C768;

    /* Text colors based on body background (assuming body is dark from shared.css) */
    --body-text-color: var(--text-main); /* Light text on dark body */
    --link-color: var(--gold); /* Gold for links */
    --link-hover-color: var(--secondary-color);
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--body-text-color); /* Inherit from root based on body background */
    background-color: var(--bg-dark); /* Ensure main content background is consistent */
}

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

/* Sections */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--bg-dark); /* Fallback */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    max-width: 900px;
    color: var(--text-main);
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--gold); /* Gold for main title */
}

.page-promotions__hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
    padding-top: 40px;
}

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

/* Button styles */
.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.page-promotions__btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Section backgrounds */
.page-promotions__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding: 60px 0;
}

.page-promotions__light-bg {
    background-color: #0d2018; /* A slightly lighter dark green for contrast */
    color: var(--text-main);
    padding: 60px 0;
}

/* Promotion 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(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid var(--border);
}

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

.page-promotions__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 20px 15px;
    color: var(--gold);
}

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

.page-promotions__card-button {
    margin: 0 20px;
    width: auto; /* Override default button width */
}

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

.page-promotions__step-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background: var(--btn-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

/* Terms and Conditions */
.page-promotions__terms-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-promotions__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.page-promotions__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

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

.page-promotions__faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    background-color: var(--deep-green); /* Slightly different background for question */
    user-select: none;
}

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

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

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

/* Why Choose section (advantage list) */
.page-promotions__advantage-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-promotions__advantage-list .page-promotions__list-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}
.page-promotions__advantage-list .page-promotions__list-item strong {
    color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        padding: 60px 20px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-promotions__promo-grid,
    .page-promotions__step-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__hero-content {
        padding: 40px 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-promotions__hero-description,
    .page-promotions__text-block,
    .page-promotions__card-description,
    .page-promotions__step-description,
    .page-promotions__list-item,
    .page-promotions__faq-answer {
        font-size: 1rem; /* Base font size for mobile */
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-promotions__promo-grid,
    .page-promotions__step-list,
    .page-promotions__advantage-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }
    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__promo-card,
    .page-promotions__step-item,
    .page-promotions__faq-item {
        margin-bottom: 15px;
    }

    /* Mobile image, video, button responsive requirements */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper,
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-promotions__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile hero */
    }
    .page-promotions__cta-button,
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto; /* Center single button */
        margin-right: auto; /* Center single button */
    }
    .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}