.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main for dark background */
    background-color: #08160F; /* Background */
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 200px; /* Min size requirement */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive H1 */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: clamp(1em, 2vw, 1.3em);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions__cta-button--secondary {
    background: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    border: 1px solid #2E7A4E; /* Border */
    margin-left: 15px;
}

.page-promotions__cta-button--secondary:hover {
    background: #2E7A4E; /* Border color on hover */
}

/* General Section Styles */
.page-promotions__overview-section,
.page-promotions__cashback-section,
.page-promotions__vip-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__cta-final-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-promotions__dark-bg {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions__text-block {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__text-link {
    color: #2AD16F; /* A lighter green for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
    color: #57E38D; /* Glow color on hover */
    text-decoration: underline;
}

/* Offer Card Grid */
.page-promotions__offer-card-grid,
.page-promotions__game-offer-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions__offer-card,
.page-promotions__game-offer-card {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px; /* Ensure cards have similar height */
    border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__offer-card:hover,
.page-promotions__game-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__offer-card-image,
.page-promotions__game-offer-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__offer-card-title,
.page-promotions__game-offer-card-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__offer-card-description,
.page-promotions__game-offer-card-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

/* Feature List (Cashback Section) */
.page-promotions__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.page-promotions__feature-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-promotions__feature-title {
    font-size: 1.3em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__feature-description {
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-promotions__vip-item {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__vip-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-promotions__vip-title {
    font-size: 1.3em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__vip-description {
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
}

/* How To Claim Section */
.page-promotions__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__step-item {
    background-color: #11271B; /* Card BG */
    border-left: 5px solid #2AD16F;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

/* Terms Section */
.page-promotions__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
    color: #A7D9B8; /* Text Secondary */
}

.page-promotions__terms-item {
    margin-bottom: 10px;
    font-size: 1em;
}

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 30px;
}

.page-promotions__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid #2E7A4E; /* Divider */
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    margin-right: 10px;
}

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

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate + to X */
}

.page-promotions__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

/* CTA Wrapper for centering buttons */
.page-promotions__cta-wrapper {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__hero-image-wrapper {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
    }
    .page-promotions__hero-image-wrapper {
        max-height: 300px;
    }
    .page-promotions__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__hero-content {
        padding: 15px;
    }
    .page-promotions__main-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__cta-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to wrapper */
    }
    .page-promotions__cta-button--secondary {
        margin-left: 0;
    }

    .page-promotions__overview-section,
    .page-promotions__cashback-section,
    .page-promotions__vip-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final-section {
        padding: 30px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-promotions__text-block,
    .page-promotions__offer-card-description,
    .page-promotions__game-offer-card-description,
    .page-promotions__feature-description,
    .page-promotions__vip-description,
    .page-promotions__step-description,
    .page-promotions__terms-item,
    .page-promotions__faq-answer p {
        font-size: 0.95em;
    }

    /* Images responsiveness for mobile */
    .page-promotions img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }

    /* All containing elements for images and videos */
    .page-promotions__hero-section,
    .page-promotions__hero-image-wrapper,
    .page-promotions__offer-card,
    .page-promotions__game-offer-card,
    .page-promotions__feature-item,
    .page-promotions__vip-item,
    .page-promotions__container,
    .page-promotions__offer-card-grid,
    .page-promotions__game-offer-card-grid,
    .page-promotions__feature-list,
    .page-promotions__vip-benefits,
    .page-promotions__step-item,
    .page-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure content doesn't overflow */
    }

    /* Specific overrides for padding on full-width sections */
    .page-promotions__overview-section,
    .page-promotions__cashback-section,
    .page-promotions__vip-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final-section {
        padding-left: 0;
        padding-right: 0;
    }

    .page-promotions__offer-card-image,
    .page-promotions__game-offer-card-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px;
    }
    .page-promotions__feature-icon,
    .page-promotions__vip-icon {
        width: 150px; /* Adjust icon size for mobile */
        height: 150px;
        min-width: 150px;
        min-height: 150px;
    }
}

/* Ensure desktop video container has width: 100% when max-width is present */
.page-promotions__video-container {
    width: 100%; /* Explicitly set for desktop */
}