/* style/promotions-daily-bonuses.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-color: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-promotions-daily-bonuses {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Light text on dark body background */
    background-color: var(--bg-color);
    line-height: 1.6;
}

.page-promotions-daily-bonuses__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
}

.page-promotions-daily-bonuses__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-promotions-daily-bonuses__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 70vh;
}

.page-promotions-daily-bonuses__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content slightly over the image for visual flow, but not overlap text on image */
    background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.page-promotions-daily-bonuses__main-title {
    color: var(--gold-color);
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-promotions-daily-bonuses__description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-promotions-daily-bonuses__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-promotions-daily-bonuses__btn-primary,
.page-promotions-daily-bonuses__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
    min-width: 180px;
}

.page-promotions-daily-bonuses__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main-color);
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-promotions-daily-bonuses__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(87, 227, 141, 0.8);
}

.page-promotions-daily-bonuses__btn-secondary {
    background-color: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

.page-promotions-daily-bonuses__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.page-promotions-daily-bonuses__section {
    padding: 80px 20px;
    text-align: center;
}

.page-promotions-daily-bonuses__introduction-section {
    background-color: var(--deep-green-color);
}

.page-promotions-daily-bonuses__section-title {
    color: var(--gold-color);
    font-size: clamp(1.8em, 3vw, 2.5em);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-bonuses__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--glow-color);
    border-radius: 5px;
}

.page-promotions-daily-bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions-daily-bonuses__text-block {
    font-size: 1.05em;
    color: var(--text-secondary-color);
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-promotions-daily-bonuses__daily-offers-section,
.page-promotions-daily-bonuses__vip-program-section {
    background-color: var(--bg-color);
}

.page-promotions-daily-bonuses__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-daily-bonuses__card {
    background-color: var(--card-bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-align: left;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main-color);
}

.page-promotions-daily-bonuses__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(87, 227, 141, 0.2);
}

.page-promotions-daily-bonuses__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card image display */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-daily-bonuses__card-title {
    color: var(--gold-color);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-daily-bonuses__card-text {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    line-height: 1.7;
}

.page-promotions-daily-bonuses__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-promotions-daily-bonuses__list li {
    background-color: var(--card-bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-main-color);
    font-size: 1.05em;
}

.page-promotions-daily-bonuses__list li::before {
    content: '✅';
    font-size: 1.2em;
    color: var(--glow-color);
    flex-shrink: 0;
}

.page-promotions-daily-bonuses__faq-section {
    background-color: var(--deep-green-color);
}

.page-promotions-daily-bonuses__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-promotions-daily-bonuses__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-promotions-daily-bonuses__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--gold-color);
    background-color: var(--card-bg-color);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-promotions-daily-bonuses__faq-question:hover {
    background-color: var(--deep-green-color);
}

.page-promotions-daily-bonuses__faq-item[open] > .page-promotions-daily-bonuses__faq-question {
    border-bottom-color: transparent;
}

.page-promotions-daily-bonuses__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-daily-bonuses__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--glow-color);
    transition: transform 0.3s ease;
}

.page-promotions-daily-bonuses__faq-item[open] .page-promotions-daily-bonuses__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-daily-bonuses__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-secondary-color);
    line-height: 1.7;
}

.page-promotions-daily-bonuses__cta-final-section {
    background-color: var(--bg-color);
    padding-bottom: 80px;
}

/* Image and Content Area CSS Size Lower Bound Check */
.page-promotions-daily-bonuses img {
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-bonuses__hero-content {
        margin-top: -80px;
        padding: 15px;
    }
    .page-promotions-daily-bonuses__main-title {
        font-size: clamp(1.8em, 4.5vw, 3em);
    }
    .page-promotions-daily-bonuses__section-title {
        font-size: clamp(1.6em, 3.5vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-bonuses__hero-content {
        margin-top: -50px;
        padding: 15px;
        width: calc(100% - 30px); /* Account for padding */
    }
    .page-promotions-daily-bonuses__main-title {
        font-size: clamp(1.5em, 5vw, 2.5em);
    }
    .page-promotions-daily-bonuses__description {
        font-size: 1em;
    }
    .page-promotions-daily-bonuses__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions-daily-bonuses__btn-primary,
    .page-promotions-daily-bonuses__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .page-promotions-daily-bonuses__section {
        padding: 40px 15px;
    }
    .page-promotions-daily-bonuses__section-title {
        font-size: clamp(1.4em, 4.5vw, 2em);
        margin-bottom: 30px;
    }
    .page-promotions-daily-bonuses__text-block {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promotions-daily-bonuses__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions-daily-bonuses__card {
        padding: 20px;
    }
    .page-promotions-daily-bonuses__card-title {
        font-size: 1.2em;
    }
    .page-promotions-daily-bonuses__card-text {
        font-size: 0.9em;
    }
    .page-promotions-daily-bonuses__list li {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    .page-promotions-daily-bonuses__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }
    .page-promotions-daily-bonuses__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.9em;
    }
    
    /* Mobile image responsiveness */
    .page-promotions-daily-bonuses img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions-daily-bonuses__hero-image-wrapper,
    .page-promotions-daily-bonuses__container,
    .page-promotions-daily-bonuses__card-grid,
    .page-promotions-daily-bonuses__card,
    .page-promotions-daily-bonuses__list,
    .page-promotions-daily-bonuses__faq-list,
    .page-promotions-daily-bonuses__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions-daily-bonuses__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions-daily-bonuses__hero-content {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/* Color Contrast Fixes (if needed, though base colors are designed for contrast) */
.page-promotions-daily-bonuses__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-promotions-daily-bonuses__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}