:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a; /* From body background */
    --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    --border-dark: rgba(255, 255, 255, 0.15);
}

.page-promotions {
    color: var(--text-light); /* Main text color on dark body background */
    background-color: var(--bg-dark); /* Ensure consistency, though body handles main bg */
    padding-top: var(--header-offset, 120px);
    min-height: 100vh;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: var(--primary-color);
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-promotions__main-title {
    font-size: 3.2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 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);
}

/* General Sections */
.page-promotions__overview-section, .page-promotions__types-section, .page-promotions__guide-section, .page-promotions__why-choose-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
}

.page-promotions__vip-section, .page-promotions__terms-section, .page-promotions__final-cta-section {
    background-color: var(--primary-color);
    padding: 60px 20px;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    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(--secondary-color);
    border-radius: 2px;
}

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

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

.page-promotions__promotion-card {
    background: var(--card-bg-dark);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__card-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* VIP Section */
.page-promotions__vip-section {
    text-align: center;
}

.page-promotions__vip-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__vip-benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px auto;
    max-width: 700px;
    text-align: left;
}

.page-promotions__vip-benefits-list li {
    background: var(--card-bg-dark);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05em;
    line-height: 1.6;
    color: var(--text-light);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Guide Section */
.page-promotions__guide-section {
    background-color: var(--bg-dark);
}

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

.page-promotions__guide-list li {
    background: var(--card-bg-dark);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-light);
    border-left: 6px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.page-promotions__guide-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__guide-list li strong {
    color: var(--secondary-color);
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

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

.page-promotions__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin: 30px auto 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__terms-list li {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-promotions__terms-link {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 30px;
    margin-top: 20px;
    font-size: 1em;
}

.page-promotions__terms-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    text-align: center;
}

.page-promotions__why-choose-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__reasons-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px auto;
    max-width: 700px;
    text-align: left;
}

.page-promotions__reasons-list li {
    background: var(--card-bg-dark);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05em;
    line-height: 1.6;
    color: var(--text-light);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__reasons-list li strong {
    color: var(--secondary-color);
}

/* Final CTA Section */
.page-promotions__final-cta-section {
    padding: 80px 20px;
    text-align: center;
}

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

.page-promotions__cta-button--primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.2em;
    padding: 18px 45px;
}

.page-promotions__cta-button--primary:hover {
    background: #e6c200;
}

.page-promotions__cta-button--secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 1.2em;
    padding: 16px 43px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        padding-top: var(--header-offset, 120px) !important;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .page-promotions__container {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

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

    .page-promotions__hero-image,
    .page-promotions__vip-image,
    .page-promotions__why-choose-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .page-promotions__hero-section {
        min-height: 400px;
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }

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

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

    .page-promotions__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-promotions__cta-button,
    .page-promotions__card-button,
    .page-promotions__terms-link,
    .page-promotions__cta-button--primary,
    .page-promotions__cta-button--secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        margin-bottom: 10px;
    }

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

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

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

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

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

    .page-promotions__vip-benefits-list,
    .page-promotions__guide-list,
    .page-promotions__terms-list,
    .page-promotions__reasons-list {
        margin-left: 0;
        padding-left: 0;
        text-align: left;
    }
    
    .page-promotions__vip-benefits-list li,
    .page-promotions__guide-list li,
    .page-promotions__terms-list li,
    .page-promotions__reasons-list li {
        padding: 15px;
        font-size: 0.95em;
    }
    .page-promotions__guide-list li strong {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-button,
    .page-promotions__card-button {
        font-size: 0.9em !important;
        padding: 10px 15px !important;
    }
}