.page-promotions-bonuses {
    padding-top: 10px; /* Small top padding for content area */
    background-color: #0A0A0A; /* Page background */
    color: #FFF6D6; /* Main text color */
    font-family: Arial, sans-serif;
}

.page-promotions-bonuses__hero-section {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    background-color: #111111; /* Card BG for this section */
    padding-bottom: 30px; /* Padding below content to match image spacing */
    border-radius: 10px;
    overflow: hidden; /* Ensures image corners match section corners */
}

.page-promotions-bonuses__hero-image {
    width: 100%;
    height: auto; /* Allow image to scale responsively */
    display: block;
    margin-bottom: 20px; /* Space between image and text content */
    border-radius: 10px 10px 0 0; /* Match section top corners */
}

.page-promotions-bonuses__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-bonuses__main-title {
    font-size: 2.8em; /* Using em for relative sizing */
    font-weight: bold;
    color: #FFD36B; /* Glow color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.5); /* Soft glow effect */
    max-width: 60ch; /* Ensure title length is reasonable */
    text-align: center;
}

.page-promotions-bonuses__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 70ch; /* Ensure description length is reasonable */
    text-align: center;
    color: #FFF6D6;
}

.page-promotions-bonuses__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for contrast on bright button */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-bonuses__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions-bonuses__cta-button--secondary {
    background: #111111;
    color: #FFD36B;
    border: 2px solid #3A2A12;
}

.page-promotions-bonuses__cta-button--secondary:hover {
    background: #1A1A1A;
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.2);
}

.page-promotions-bonuses__section-title {
    font-size: 2.2em;
    color: #F2C14E; /* Main color for section titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-promotions-bonuses__section-description {
    font-size: 1.05em;
    color: #E5E5E5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.page-promotions-bonuses__welcome-bonus-section,
.page-promotions-bonuses__daily-weekly-section,
.page-promotions-bonuses__vip-loyalty-section,
.page-promotions-bonuses__faq-section,
.page-promotions-bonuses__app-download-cta {
    padding: 60px 20px;
    margin-bottom: 30px;
    background-color: #111111; /* Card BG for sections */
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-bonuses__bonus-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-bonuses__bonus-card {
    background-color: #0A0A0A; /* Background for individual cards */
    border-radius: 10px;
    border: 1px solid #3A2A12;
    padding: 25px;
    text-align: center;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-bonuses__bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-promotions-bonuses__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers area without distortion */
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-promotions-bonuses__card-title {
    font-size: 1.5em;
    color: #FFD36B;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions-bonuses__card-text {
    font-size: 0.95em;
    color: #E5E5E5;
    margin-bottom: 25px;
    flex-grow: 1; /* Allows text to take up available space */
}

.page-promotions-bonuses__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto; /* Adjust width to content */
    margin: 0 auto; /* Center button */
}

.page-promotions-bonuses__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(242, 193, 78, 0.3);
}

.page-promotions-bonuses__vip-benefits-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
}

.page-promotions-bonuses__vip-benefit-item {
    background-color: #0A0A0A;
    border-left: 4px solid #F2C14E;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #FFF6D6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-bonuses__faq-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-bonuses__faq-question {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-promotions-bonuses__faq-answer {
    font-size: 1em;
    color: #E5E5E5;
    line-height: 1.6;
}

.page-promotions-bonuses__app-download-cta {
    text-align: center;
    padding: 50px 20px;
}

.page-promotions-bonuses__cta-button--app-download {
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-promotions-bonuses__main-title {
        font-size: 2.5em;
    }
    .page-promotions-bonuses__section-title {
        font-size: 2em;
    }
    .page-promotions-bonuses__bonus-card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .page-promotions-bonuses__main-title {
        font-size: clamp(1.8em, 5vw, 2.2em); /* Using clamp for H1 */
        max-width: 100%;
    }
    .page-promotions-bonuses__hero-description {
        font-size: 1em;
        max-width: 100%;
    }
    .page-promotions-bonuses__section-title {
        font-size: clamp(1.6em, 4.5vw, 1.8em);
        padding-top: 30px;
    }
    .page-promotions-bonuses__bonus-cards {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-bonuses__bonus-card {
        max-width: 90%;
        margin-bottom: 20px;
    }
    .page-promotions-bonuses__welcome-bonus-section,
    .page-promotions-bonuses__daily-weekly-section,
    .page-promotions-bonuses__vip-loyalty-section,
    .page-promotions-bonuses__faq-section,
    .page-promotions-bonuses__app-download-cta {
        padding: 40px 15px;
    }
    .page-promotions-bonuses__hero-image,
    .page-promotions-bonuses__card-image {
        max-width: 100%;
        height: auto; /* Enforce responsive image scaling */
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }
    .page-promotions-bonuses__vip-benefit-item {
        font-size: 0.95em;
    }
    .page-promotions-bonuses__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-bonuses__faq-answer {
        font-size: 0.9em;
    }
    /* Content area image CSS size lower bound enforcement */
    .page-promotions-bonuses img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-promotions-bonuses__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-promotions-bonuses__section-title {
        font-size: clamp(1.4em, 5.5vw, 1.6em);
    }
    .page-promotions-bonuses__cta-button,
    .page-promotions-bonuses__card-button {
        padding: 12px 20px;
        font-size: 0.95em;
    }
}