:root {
    --primary-color: #FFD700;
    --secondary-color: #1A1A1A;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-light: #e0e0e0;
    --background-light: #f9f9f9;
}

.page-promotions {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding-top: var(--header-offset, 120px);
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.page-promotions__hero-section,
.page-promotions__current-offers-section,
.page-promotions__vip-program-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__cta-final-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.page-promotions__section-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

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

.page-promotions__main-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.page-promotions__cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.page-promotions__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-promotions__hero-image-wrapper {
    margin-top: 50px;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promotions__current-offers-section {
    background-color: var(--secondary-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-promotions__offer-card {
    background: #2b2b2b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
}

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

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

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

.page-promotions__card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-promotions__card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #e6c200;
}

.page-promotions__card-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    opacity: 0.85;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.page-promotions__card-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.page-promotions__vip-program-section {
    background-color: #0a0a0a;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__vip-features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-promotions__vip-feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    background: #2b2b2b;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__vip-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.page-promotions__vip-feature-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions__vip-feature-description {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.85;
}

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

.page-promotions__terms-section {
    background-color: var(--secondary-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-promotions__terms-item {
    background: #2b2b2b;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-section {
    background-color: #0a0a0a;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__faq-container {
    max-width: 900px;
    margin: 40px auto;
}

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: #1f1f1f;
    color: var(--text-light);
    font-size: 15px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #2b2b2b;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--primary-color);
}

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

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: inherit;
}

.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    transform: rotate(45deg);
    color: #fff;
    background: var(--primary-color);
}

.page-promotions__cta-final-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(45deg, #0a0a0a 0%, var(--secondary-color) 100%);
    border-top: 5px solid var(--primary-color);
}

.page-promotions__cta-final-content {
    flex: 1;
    text-align: left;
}

.page-promotions__cta-final-content .page-promotions__section-title {
    text-align: left;
    font-size: 32px;
}

.page-promotions__cta-final-content .page-promotions__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
}

.page-promotions__cta-final-image {
    width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 40px;
    }

    .page-promotions__hero-description {
        font-size: 18px;
    }

    .page-promotions__section-title {
        font-size: 30px;
    }

    .page-promotions__section-description {
        font-size: 16px;
    }

    .page-promotions__offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-promotions__cta-final-section {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__cta-final-content {
        text-align: center;
    }

    .page-promotions__cta-final-content .page-promotions__section-title,
    .page-promotions__cta-final-content .page-promotions__section-description {
        text-align: center;
    }

    .page-promotions__cta-final-image {
        margin-top: 40px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        padding-top: var(--header-offset, 120px) !important;
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions__hero-section,
    .page-promotions__current-offers-section,
    .page-promotions__vip-program-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final-section {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-promotions__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-promotions__hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

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

    .page-promotions__hero-image-wrapper {
        margin-top: 30px;
        border-radius: 8px;
    }

    .page-promotions__section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

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

    .page-promotions__offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .page-promotions__card-content {
        padding: 20px;
    }

    .page-promotions__card-title {
        font-size: 18px;
    }

    .page-promotions__card-description {
        font-size: 14px;
    }

    .page-promotions__vip-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-promotions__vip-feature-item {
        width: 100%;
        max-width: 100%;
        padding: 25px;
    }

    .page-promotions__vip-icon {
        width: 80px;
        height: 80px;
    }

    .page-promotions__vip-feature-title {
        font-size: 20px;
    }

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

    .page-promotions__faq-question h3 {
        font-size: 16px;
        width: calc(100% - 40px);
    }

    .page-promotions__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 22px;
    }

    .page-promotions__faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }

    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px 20px !important;
    }

    .page-promotions__cta-final-section {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
    }

    .page-promotions__cta-final-content .page-promotions__section-title {
        font-size: 24px;
    }

    .page-promotions__cta-final-content .page-promotions__section-description {
        font-size: 15px;
    }

    .page-promotions__cta-final-image {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

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

    .page-promotions__hero-section,
    .page-promotions__hero-content,
    .page-promotions__hero-image-wrapper,
    .page-promotions__current-offers-section,
    .page-promotions__offers-grid,
    .page-promotions__offer-card,
    .page-promotions__vip-program-section,
    .page-promotions__vip-features,
    .page-promotions__vip-feature-item,
    .page-promotions__terms-section,
    .page-promotions__terms-list,
    .page-promotions__terms-item,
    .page-promotions__faq-section,
    .page-promotions__faq-container,
    .page-promotions__faq-item,
    .page-promotions__cta-final-section,
    .page-promotions__cta-final-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions__cta-buttons, .page-promotions__cta-center {
        padding-left: 0;
        padding-right: 0;
    }
}