:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --card-bg: #2A1212;
    --background-color: #140C0C;
    --text-main-color: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
}

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

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

.page-promotions__container--center {
    text-align: center;
}

.page-promotions__section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.page-promotions__section--intro {
    padding-top: 30px;
}

.page-promotions__section-title {
    font-size: 36px;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-promotions__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: rgba(255, 241, 232, 0.8);
}

/* HERO Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    overflow: hidden;
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

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

.page-promotions__hero-content h1 {
    font-size: 48px;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.page-promotions__hero-content p {
    font-size: 20px;
    color: rgba(255, 241, 232, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--secondary {
    background: var(--deep-red-color);
    border: 2px solid var(--gold-color);
}

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

.page-promotions__cta-button--large {
    padding: 18px 50px;
    font-size: 22px;
    min-width: 280px;
}

/* Grid Layout for Cards */
.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--deep-red-color);
}

.page-promotions__card-title {
    font-size: 24px;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 16px;
    color: rgba(255, 241, 232, 0.7);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Content Blocks for Special Promotions and Referral */
.page-promotions__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-promotions__content-block--reverse {
    flex-direction: row-reverse;
}

.page-promotions__content-image {
    flex: 1;
    min-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--deep-red-color);
}

.page-promotions__content-text {
    flex: 2;
    font-size: 17px;
    color: rgba(255, 241, 232, 0.85);
}

.page-promotions__content-subtitle {
    font-size: 28px;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.page-promotions__text-link {
    color: var(--gold-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
    color: var(--primary-color);
}

/* FAQ Section */
.page-promotions__section--faq {
    background-color: var(--background-color);
}

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

details.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
details.page-promotions__faq-item:hover {
    border-color: var(--gold-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--gold-color);
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
    background: rgba(var(--primary-color), 0.1);
    color: var(--gold-color);
}
.page-promotions__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}
.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    line-height: 1;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 25px 20px;
    background: rgba(var(--deep-red-color), 0.2);
    border-radius: 0 0 8px 8px;
    color: rgba(255, 241, 232, 0.8);
    font-size: 16px;
    line-height: 1.7;
}
details.page-promotions__faq-item .page-promotions__faq-answer p {
    margin-bottom: 0;
    color: rgba(255, 241, 232, 0.8);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-content h1 {
        font-size: 40px;
    }
    .page-promotions__section-title {
        font-size: 32px;
    }
    .page-promotions__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__content-block--reverse {
        flex-direction: column;
    }
    .page-promotions__content-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 15px;
    }
    .page-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-container {
        padding: 0;
    }
    .page-promotions__hero-image {
        border-radius: 8px;
        margin-bottom: 20px;
    }
    .page-promotions__hero-image img {
        border-radius: 8px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-promotions__hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-promotions__cta-button,
    .page-promotions__cta-button--secondary,
    .page-promotions__btn-primary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 18px;
        min-width: unset;
    }

    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-promotions__section-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__card {
        padding: 20px;
        border-radius: 8px;
    }
    .page-promotions__card-image {
        height: 180px;
        border-radius: 6px;
    }
    .page-promotions__card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .page-promotions__card-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .page-promotions__content-block {
        padding: 30px 20px;
        gap: 20px;
    }
    .page-promotions__content-subtitle {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .page-promotions__content-text {
        font-size: 15px;
    }
    .page-promotions__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 6px;
    }

    details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px; }
    .page-promotions__faq-qtext { font-size: 16px; }
    .page-promotions__faq-toggle { font-size: 24px; width: 24px; }
    details.page-promotions__faq-item .page-promotions__faq-answer { padding: 0 15px 15px; font-size: 15px; }

    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__content-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__section--faq .page-promotions__container {
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions__faq-list {
        margin-left: 0;
        margin-right: 0;
    }
}