.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body bg */
    line-height: 1.6;
}

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

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 550px;
    overflow: hidden;
    padding-bottom: 60px;
}

.page-promotions__hero-content {
    flex: 1;
    padding: 40px 60px;
    z-index: 1;
}

.page-promotions__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 60px;
}

.page-promotions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min size */
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #26A9E0; /* Brand color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* General Section Styling */
.page-promotions__section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Darker background for content sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__section:nth-child(even) {
    background-color: #0a0a0a; /* Alternate background for sections */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for section titles */
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* CTA Buttons */
.page-promotions__cta-button {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__cta-button:hover {
    background-color: #1e87b7;
    transform: translateY(-2px);
}

.page-promotions__cta-button--primary {
    background-color: #EA7C07; /* Login color for primary CTA */
}

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

.page-promotions__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

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

.page-promotions__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent light background for contrast */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff; /* Light text for card content */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions__card-text {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__card-button:hover {
    background-color: #1e87b7;
}

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

.page-promotions__promo-item {
    background-color: rgba(38, 169, 224, 0.1); /* Light brand color background */
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border: 1px solid #26A9E0;
}

.page-promotions__promo-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions__promo-text {
    font-size: 1.05em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-promotions__promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-promotions__promo-list li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-promotions__promo-list li span {
    font-weight: bold;
    color: #26A9E0;
}

/* Offer Cards */
.page-promotions__offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__card--dark-bg {
    background-color: #26A9E0; /* Brand color as background */
    color: #ffffff;
    border: none;
}

.page-promotions__card--dark-bg .page-promotions__card-title {
    color: #ffffff;
}

.page-promotions__card--dark-bg .page-promotions__card-button {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-promotions__card--dark-bg .page-promotions__card-button:hover {
    background-color: #f0f0f0;
}

.page-promotions__card--dark-bg .page-promotions__card-image {
    background-color: rgba(0,0,0,0.2); /* Slightly darker background for image in dark card */
    padding: 10px;
    border-radius: 8px;
}

.page-promotions__card--dark-bg .page-promotions__card-list li {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.page-promotions__card--dark-bg .page-promotions__card-list li span {
    color: #ffffff; /* White text for values on dark background */
}

/* VIP Program */
.page-promotions__vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-promotions__vip-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.page-promotions__vip-card:hover {
    transform: translateY(-5px);
}

.page-promotions__vip-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-promotions__vip-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions__vip-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-promotions__vip-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(38, 169, 224, 0.15);
    border-radius: 10px;
    border: 1px solid #26A9E0;
}

.page-promotions__vip-cta p {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

/* Seasonal Events */
.page-promotions__event-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__event-item {
    display: flex;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__event-image {
    width: 40%;
    height: auto;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__event-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-promotions__event-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions__event-text {
    font-size: 1.05em;
    color: #e0e0e0;
    margin-bottom: 25px;
    flex-grow: 1;
}