:root {
    /* Custom Colors */
    --pkvip88-primary-color: #11A84E; /* Main Green */
    --pkvip88-secondary-color: #22C768; /* Auxiliary Green */
    --pkvip88-button-gradient-start: #2AD16F;
    --pkvip88-button-gradient-end: #13994A;
    --pkvip88-card-bg: #11271B;
    --pkvip88-body-bg: #08160F;
    --pkvip88-text-main: #F2FFF6;
    --pkvip88-text-secondary: #A7D9B8;
    --pkvip88-border-color: #2E7A4E;
    --pkvip88-glow-color: #57E38D;
    --pkvip88-gold-color: #F2C14E;
    --pkvip88-divider-color: #1E3A2A;
    --pkvip88-deep-green: #0A4B2C;

    /* Default text color for dark backgrounds */
    --pkvip88-default-text-on-dark: #F2FFF6;
    /* Default text color for light backgrounds (for contrast) */
    --pkvip88-default-text-on-light: #333333;
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--pkvip88-text-main); /* Default text color for the page */
    background-color: var(--pkvip88-body-bg); /* Page background from custom colors */
    line-height: 1.6;
}

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

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

.page-promotions__dark-section {
    background-color: var(--pkvip88-deep-green);
    color: var(--pkvip88-text-main);
}

.page-promotions__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem); /* H1/H2 font size clamp */
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--pkvip88-gold-color); /* Use gold for titles for luxury feel */
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions__section-title--light {
    color: var(--pkvip88-gold-color);
}

.page-promotions__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--pkvip88-text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* 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 for first section */
    padding-bottom: 60px; /* Bottom padding for content */
    background-color: var(--pkvip88-body-bg);
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text contrast */
}