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

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

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

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px;
    background-color: var(--bc1-deep-green);
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    filter: brightness(0.8);
}

.page-promotions__hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--bc1-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

.page-promotions__cta-button {
    display: inline-block;
    background: var(--bc1-btn-gradient);
    color: var(--bc1-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
    opacity: 0.9;
}

.page-promotions__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--bc1-primary);
    color: var(--bc1-primary);
    box-shadow: none;
    margin-top: 20px;
}

.page-promotions__cta-button--secondary:hover {
    background: var(--bc1-primary);
    color: var(--bc1-text-main);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--bc1-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__section-title--white {
    color: var(--bc1-text-main);
    text-shadow: none;
}

.page-promotions__section-title--white::after {
    background: var(--bc1-text-main);
}

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

.page-promotions__text-block--centered {
    text-align: center;
}

.page-promotions__text-block--white {
    color: var(--bc1-text-main);
}

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

.page-promotions__promo-card {
    background-color: var(--bc1-card-bg);
    border: 1px solid var(--bc1-border);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-promotions__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
    color: var(--bc1-text-secondary);
    font-size: 0.9rem;
}

.page-promotions__card-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-promotions__card-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--bc1-primary);
}

.page-promotions__card-button {
    display: inline-block;
    background: var(--bc1-btn-gradient);
    color: var(--bc1-text-main);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.page-promotions__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__steps-list li {
    background-color: var(--bc1-card-bg);
    border: 1px solid var(--bc1-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-title {
    font-size: 1.3rem;
    color: var(--bc1-primary);
    margin-bottom: 10px;
}

.page-promotions__steps-list p {
    color: var(--bc1-text-secondary);
    font-size: 1rem;
}

.page-promotions__steps-list p a {
    color: var(--bc1-gold);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__steps-list p a:hover {
    text-decoration: underline;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__terms-list li {
    background-color: var(--bc1-card-bg);
    border: 1px solid var(--bc1-border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__terms-item-title {
    font-size: 1.2rem;
    color: var(--bc1-primary);
    margin-bottom: 8px;
}

.page-promotions__terms-list p {
    color: var(--bc1-text-secondary);
    font-size: 0.95rem;
}

.page-promotions__terms-list p a {
    color: var(--bc1-gold);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__terms-list p a:hover {
    text-decoration: underline;
}

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

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

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

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

.page-promotions__faq-question:hover {
    background-color: var(--bc1-deep-green);
}

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

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--bc1-text-secondary);
    border-top: 1px solid var(--bc1-divider);
    margin-top: -1px;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
    border-top: 1px solid var(--bc1-divider);
}

.page-promotions__cta-section {
    background-color: var(--bc1-deep-green);
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 2px solid var(--bc1-primary);
    border-bottom: 2px solid var(--bc1-primary);
}

.page-promotions__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promotions__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-content {
    max-width: 800px;
}

@media (max-width: 1024px) {
    .page-promotions__hero-section {
        padding: 40px 20px;
        padding-top: 10px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-promotions__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-promotions__hero-image-wrapper,
    .page-promotions__promo-card,
    .page-promotions__cta-container,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-section,
    .page-promotions__intro-section,
    .page-promotions__types-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

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

    .page-promotions__cta-button,
    .page-promotions__card-button,
    .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;
        text-align: center;
    }

    .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;
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column;
    }

    .page-promotions__hero-section {
        padding: 20px 0;
        padding-top: 10px;
    }

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

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

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

    .page-promotions__cta-button {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .page-promotions__card-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-card {
        padding: 20px;
    }

    .page-promotions__card-title {
        font-size: 1.3rem;
    }

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

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

    .page-promotions__cta-section {
        padding: 60px 15px;
    }

    .page-promotions__cta-container {
        flex-direction: column;
    }
}