:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #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-background);
    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: 1rem;
    line-height: 1.2;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    color: var(--color-glow);
    margin-bottom: 1.5rem;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.page-promotions__type-title,
.page-promotions__card-title,
.page-promotions__step-title,
.page-promotions__terms-title,
.page-promotions__faq-qtext {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.8rem;
}

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

.page-promotions__hero-description,
.page-promotions__section-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

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

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

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

.page-promotions__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px var(--color-glow);
}

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

.page-promotions__btn-secondary:hover {
    background: var(--color-border);
    color: var(--color-text-main);
    box-shadow: 0 0 10px rgba(var(--color-gold), 0.5);
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0;
    overflow: hidden;
    background-color: var(--color-deep-green);
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin-bottom: 2rem;
}

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

.page-promotions__overview-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

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

.page-promotions__type-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__featured-promotions {
    padding: 60px 0;
    background-color: var(--color-deep-green);
}

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

.page-promotions__promotion-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__how-to-claim {
    padding: 60px 0;
    background-color: var(--color-background);
}

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

.page-promotions__step-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.page-promotions__terms-conditions {
    background-color: var(--color-deep-green);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

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

.page-promotions__faq-section {
    padding: 60px 0;
    background-color: var(--color-deep-green);
}

.page-promotions__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-main);
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
    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(--color-deep-green);
    border-bottom: 1px solid var(--color-gold);
}

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

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

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

.page-promotions__final-cta {
    padding: 60px 0;
    background-color: var(--color-background);
    text-align: center;
}

@media (max-width: 1024px) {
    .page-promotions__hero-image {
        max-height: 400px;
    }
}

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

    .page-promotions__hero-image {
        max-height: 300px;
        margin-bottom: 1.5rem;
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-promotions__hero-description,
    .page-promotions__section-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

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

    .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;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__overview-section,
    .page-promotions__featured-promotions,
    .page-promotions__how-to-claim,
    .page-promotions__faq-section,
    .page-promotions__final-cta {
        padding: 40px 0;
    }

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

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

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

    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-section,
    .page-promotions__overview-section,
    .page-promotions__featured-promotions,
    .page-promotions__how-to-claim,
    .page-promotions__faq-section,
    .page-promotions__final-cta,
    .page-promotions__promotion-types,
    .page-promotions__promotion-grid,
    .page-promotions__steps-wrapper,
    .page-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }

    .page-promotions__hero-content {
        padding: 0 15px;
    }

    .page-promotions__faq-question {
        padding: 15px 20px;
    }

    .page-promotions__faq-answer {
        padding: 10px 20px 15px;
    }
}

.page-promotions img {
    filter: none !important;
}

.page-promotions__hero-image,
.page-promotions__card-image {
    min-width: 200px;
    min-height: 200px;
}

.page-promotions img:not(.shared-header img):not(.shared-footer img) {
    min-width: 200px;
    min-height: 200px;
}
@media (max-width: 768px) {
    .page-promotions img:not(.shared-header img):not(.shared-footer img) {
        min-width: unset !important;
        min-height: unset !important;
    }
}