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

.page-promotions {
    background-color: var(--color-bg); 
    color: var(--color-text-main); 
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions h1,
.page-promotions h2,
.page-promotions h3 {
    color: var(--color-text-main);
    margin-bottom: 1em;
    font-weight: bold;
}

.page-promotions p {
    color: var(--color-text-secondary);
    margin-bottom: 1em;
}

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

.page-promotions a:hover {
    text-decoration: underline;
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px; 
    padding-top: 10px; 
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); 
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: 50px; 
    background: rgba(0, 0, 0, 0.4); 
    border-radius: 10px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    color: var(--color-text-main);
    line-height: 1.2;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    margin-bottom: 1.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 100%; 
    box-sizing: border-box;
    white-space: normal; 
    word-wrap: break-word; 
}

.page-promotions__btn-primary {
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    border: none;
}

.page-promotions__btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

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

.page-promotions__overview-section,
.page-promotions__promotion-details-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--color-card-bg); 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
}

.page-promotions__section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--color-gold); 
    margin-bottom: 1em;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2em auto;
    color: var(--color-text-secondary);
}

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

.page-promotions__feature-item {
    background-color: var(--color-deep-green); 
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__feature-title {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 0.8em;
}

.page-promotions__feature-text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

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

.page-promotions__card {
    background-color: var(--color-deep-green);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
    width: 100%;
    height: 220px; 
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 0.8em;
    flex-grow: 1; 
}

.page-promotions__card-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5em;
}

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

.page-promotions__step-item {
    background-color: var(--color-deep-green);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
    padding-top: 60px; 
}

.page-promotions__step-number {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid var(--color-gold);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
    font-size: 1.25rem;
    color: var(--color-text-main);
    margin-bottom: 0.5em;
}

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

.page-promotions__faq-list {
    margin-top: 30px;
}

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
    list-style: none; 
}

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

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

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

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

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

.page-promotions__cta-section .page-promotions__cta-buttons {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .page-promotions__hero-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions__main-title {
        font-size: 2rem;
    }

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

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

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important; 
        max-width: 100% !important;
        padding: 15px 20px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__overview-section,
    .page-promotions__promotion-details-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__faq-section,
    .page-promotions__cta-section {
        margin: 20px auto;
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

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

    .page-promotions__card-image {
        height: 180px;
    }

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

    .page-promotions__hero-image-wrapper,
    .page-promotions__card,
    .page-promotions__feature-item,
    .page-promotions__step-item,
    .page-promotions__promotion-cards,
    .page-promotions__features-grid,
    .page-promotions__steps-grid,
    .page-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; 
    }

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

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

    .page-promotions__video-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 1.8rem;
    }
    .page-promotions__section-title {
        font-size: 1.5rem;
    }
    .page-promotions__hero-content {
        padding: 15px;
    }
    .page-promotions__faq-question {
        padding: 12px 15px;
    }
    .page-promotions__faq-answer {
        padding: 8px 15px 12px 15px;
    }
}