:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --bg-dark: #08160F; /* Background */
    --card-bg: #11271B; /* Card B G */
    --text-light-main: #F2FFF6; /* Text Main */
    --text-light-secondary: #A7D9B8; /* Text Secondary */
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green: #0A4B2C; /* Deep Green */
}

/* Base styles for the page content */
.page-promotions {
    background-color: var(--bg-dark);
    color: var(--text-light-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* General section styling */
.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--text-light-main);
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    color: var(--text-light-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.8); /* Slightly dim the image for text contrast */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__main-title {
    color: var(--text-light-main);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.2rem;
    color: var(--text-light-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: var(--text-light-main);
    border: none;
    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(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__promotion-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

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

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

.page-promotions__card-button {
    width: 100%;
    margin-top: auto;
}

/* VIP Section */
.page-promotions__vip-section {
    background-color: var(--deep-green);
    padding: 80px 0;
}

.page-promotions__vip-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-promotions__vip-text-block {
    flex: 1;
    min-width: 300px;
}

.page-promotions__vip-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions__vip-benefits li {
    font-size: 1.1rem;
    color: var(--text-light-secondary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-promotions__vip-benefits li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-size: 1.2em;
}

.page-promotions__vip-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-promotions__vip-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* How-to-Claim Section */
.page-promotions__how-to-claim-section {
    background-color: var(--bg-dark);
}

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

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

.page-promotions__step-icon {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-color);
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 15px var(--glow-color);
}

.page-promotions__step-title {
    font-size: 1.5rem;
    color: var(--text-light-main);
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Terms & Conditions Section */
.page-promotions__terms-section {
    background-color: var(--deep-green);
    padding: 80px 0;
}

.page-promotions__terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions__term-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-promotions__term-title {
    font-size: 1.4rem;
    color: var(--text-light-main);
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions__full-terms-text {
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-light-secondary);
}

.page-promotions__link-text {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__link-text:hover {
    color: var(--secondary-color);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    background-color: var(--bg-dark);
}

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

.page-promotions__feature-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-promotions__feature-title {
    font-size: 1.4rem;
    color: var(--text-light-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__feature-text {
    font-size: 1rem;
    color: var(--text-light-secondary);
    flex-grow: 1;
}

.page-promotions__bottom-cta {
    margin-top: 50px;
    text-align: center;
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: var(--deep-green);
    padding: 80px 0;
}

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

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

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

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

.page-promotions__faq-item[open] > .page-promotions__faq-question {
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
    border-radius: 8px 8px 0 0;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

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

/* Conclusion Section */
.page-promotions__conclusion-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__section {
        padding: 40px 0;
    }

    .page-promotions__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-promotions__hero-description {
        font-size: 1.1rem;
    }

    .page-promotions__vip-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__vip-text-block,
    .page-promotions__vip-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions__section {
        padding: 30px 0;
    }

    .page-promotions__hero-section {
        padding-bottom: 30px;
    }

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

    .page-promotions__hero-description {
        font-size: 1rem;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-promotions__container {
        padding: 0 15px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 15px;
    }

    .page-promotions__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-promotions__promotions-grid,
    .page-promotions__steps-grid,
    .page-promotions__terms-grid,
    .page-promotions__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__promotion-card,
    .page-promotions__step-card,
    .page-promotions__term-item,
    .page-promotions__feature-card {
        padding: 20px;
    }

    .page-promotions__card-title,
    .page-promotions__step-title,
    .page-promotions__term-title,
    .page-promotions__feature-title {
        font-size: 1.2rem;
    }

    .page-promotions__card-text,
    .page-promotions__step-text,
    .page-promotions__term-text,
    .page-promotions__feature-text,
    .page-promotions__vip-benefits li,
    .page-promotions__full-terms-text {
        font-size: 0.9rem;
    }

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

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

    /* Mobile image and video responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions__hero-image-wrapper,
    .page-promotions__vip-image-wrapper,
    .page-promotions__promotion-card,
    .page-promotions__step-card,
    .page-promotions__term-item,
    .page-promotions__feature-card,
    .page-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Ensure padding for containers on mobile */
    .page-promotions__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Color Contrast Enforcement - Dark background, light text */
.page-promotions {
    color: var(--text-light-main);
}

.page-promotions__light-bg {
    background-color: var(--bg-dark);
    color: var(--text-light-main);
}

.page-promotions__dark-bg {
    background-color: var(--card-bg);
    color: var(--text-light-main);
}

/* Specific text colors */
.page-promotions p,
.page-promotions li,
.page-promotions__section-description,
.page-promotions__card-text,
.page-promotions__step-text,
.page-promotions__term-text,
.page-promotions__feature-text,
.page-promotions__faq-answer {
    color: var(--text-light-secondary);
}

.page-promotions__main-title,
.page-promotions__section-title,
.page-promotions__card-title,
.page-promotions__step-title,
.page-promotions__term-title,
.page-promotions__feature-title,
.page-promotions__faq-question {
    color: var(--text-light-main);
}

.page-promotions__text-main {
    color: var(--text-light-main);
}

/* Footer (shared.css handles it, but just in case for text color) */
.shared-footer {
    background-color: var(--bg-dark);
    color: var(--text-light-secondary);
}
.shared-footer a {
    color: var(--primary-color);
}
.shared-footer a:hover {
    color: var(--secondary-color);
}