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

.page-promotions {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-primary); /* Assuming body background is set by shared.css */
    line-height: 1.6;
}

.page-promotions__section-padding {
    padding: 60px 0;
}

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

.page-promotions__section-title {
    font-size: clamp(2em, 5vw, 2.8em);
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-promotions__section-title--light {
    color: var(--text-main);
}

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

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: var(--deep-green-color);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
}

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

.page-promotions__hero-content {
    max-width: 900px;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.page-promotions__main-title {
    font-size: clamp(2.5em, 6vw, 3.8em);
    color: var(--gold-color);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__description {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.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: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

.page-promotions__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* Intro Section */
.page-promotions__intro-section {
    background-color: var(--bg-primary);
}

/* Promo Types Section */
.page-promotions__types-section {
    background-color: var(--bg-primary);
}

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

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

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

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    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: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.page-promotions__card-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

/* Guide Section */
.page-promotions__guide-section {
    background-color: var(--deep-green-color);
    border-top: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 30px;
}

.page-promotions__guide-item {
    background-color: rgba(17, 39, 27, 0.7); /* var(--card-bg) with opacity */
    border-left: 5px solid var(--gold-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__guide-step-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-promotions__guide-step-text {
    font-size: 1em;
    color: var(--text-secondary);
}

/* Terms Section */
.page-promotions__terms-section {
    background-color: var(--bg-primary);
}

.page-promotions__terms-content {
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 12px;
}

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

.page-promotions__terms-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--divider-color);
}

.page-promotions__terms-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-promotions__terms-sub-title {
    font-size: 1.3em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-promotions__terms-item p {
    font-size: 1em;
    color: var(--text-secondary);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    background-color: var(--deep-green-color);
    border-top: 1px solid var(--divider-color);
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions__benefits-item {
    background-color: rgba(17, 39, 27, 0.7); /* var(--card-bg) with opacity */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions__benefits-item:hover {
    transform: translateY(-5px);
}

.page-promotions__benefits-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-promotions__benefits-text {
    font-size: 1em;
    color: var(--text-secondary);
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: var(--bg-primary);
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-promotions__faq-item[open] {
    background-color: var(--deep-green-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

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

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    text-align: justify;
}

.page-promotions__faq-answer p {
    margin-bottom: 0;
}

/* Final CTA Section */
.page-promotions__final-cta-section {
    background-color: var(--deep-green-color);
    text-align: center;
    border-top: 1px solid var(--divider-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        margin-top: 30px;
    }
    .page-promotions__main-title {
        font-size: clamp(2.2em, 5.5vw, 3.2em);
    }
    .page-promotions__description {
        font-size: 1.1em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__section-padding {
        padding: 50px 0;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 40px;
    }
    .page-promotions__hero-image-wrapper {
        max-height: 400px;
    }
    .page-promotions__main-title {
        font-size: clamp(2em, 7vw, 2.8em);
    }
    .page-promotions__description {
        font-size: 1em;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__section-padding {
        padding: 40px 0;
    }
    .page-promotions__text-block {
        font-size: 0.95em;
    }
    .page-promotions__guide-item,
    .page-promotions__benefits-item {
        padding: 20px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* Image, Video, Button Responsive Adaptation */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper,
    .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;
        overflow: hidden !important; /* Prevent overflow */
    }
    .page-promotions__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-promotions__video-section {
        padding-top: 10px !important; /* body has header-offset, this is decorative */
    }
}

@media (max-width: 480px) {
    .page-promotions__section-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }
    .page-promotions__main-title {
        font-size: clamp(2em, 8vw, 2.8em);
    }
    .page-promotions__description {
        font-size: 0.9em;
    }
    .page-promotions__hero-image-wrapper {
        max-height: 300px;
    }
}

/* Links within text blocks */
.page-promotions a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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