:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #000000;
    --bg-light: #f1f3f5;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
}

.page-promotions-daily-bonus {
    color: var(--text-light); /* Body background is dark, so text is light */
    background-color: var(--bg-dark); /* Inherited from shared.css body */
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.page-promotions-daily-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-daily-bonus__main-title,
.page-promotions-daily-bonus__section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions-daily-bonus__main-title {
    font-size: 42px;
    color: var(--primary-color);
}

.page-promotions-daily-bonus__section-title {
    font-size: 36px;
    color: var(--primary-color);
}

.page-promotions-daily-bonus__text-block {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-light);
    text-align: justify;
}

.page-promotions-daily-bonus__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-daily-bonus__text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions-daily-bonus__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* Buttons */
.page-promotions-daily-bonus__cta-button,
.page-promotions-daily-bonus__btn-primary,
.page-promotions-daily-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
    border: none;
}

.page-promotions-daily-bonus__cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-daily-bonus__cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-daily-bonus__btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions-daily-bonus__btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.4);
}

.page-promotions-daily-bonus__btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3);
}

.page-promotions-daily-bonus__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* --- HERO Section --- */
.page-promotions-daily-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 180px; /* For fixed header */
    padding-bottom: 60px;
    background: var(--bg-dark);
}

.page-promotions-daily-bonus__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-daily-bonus__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions-daily-bonus__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions-daily-bonus__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-light);
}

.page-promotions-daily-bonus__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* --- Intro Section --- */
.page-promotions-daily-bonus__intro-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* --- Guide Section --- */
.page-promotions-daily-bonus__guide-section {
    padding: 60px 20px;
    background-color: #0d0d0d;
    color: var(--text-light);
}

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

.page-promotions-daily-bonus__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-daily-bonus__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-bonus__step-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 15px;
}

.page-promotions-daily-bonus__step-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-bonus__step-description {
    font-size: 16px;
    color: #e0e0e0;
}

.page-promotions-daily-bonus__note {
    margin-top: 30px;
    font-style: italic;
    font-size: 15px;
    color: #cccccc;
    text-align: center;
}

/* --- Other Promos Section --- */
.page-promotions-daily-bonus__other-promos-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

.page-promotions-daily-bonus__promo-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-daily-bonus__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-bonus__promo-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-bonus__promo-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-bonus__promo-description {
    font-size: 16px;
    color: #e0e0e0;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* --- FAQ Section --- */
.page-promotions-daily-bonus__faq-section {
    padding: 60px 20px;
    background-color: #0d0d0d;
    color: var(--text-light);
}

.page-promotions-daily-bonus__faq-list {
    margin-top: 40px;
}

.page-promotions-daily-bonus__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-daily-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
}

.page-promotions-daily-bonus__faq-item.active .page-promotions-daily-bonus__faq-answer {
    max-height: 2000px !important;
    padding: 20px !important;
    opacity: 1;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-daily-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--text-light);
}

.page-promotions-daily-bonus__faq-question:hover {
    background: rgba(255, 215, 0, 0.2);
}

.page-promotions-daily-bonus__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-promotions-daily-bonus__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-promotions-daily-bonus__faq-item.active .page-promotions-daily-bonus__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg);
}

/* --- News Section --- */
.page-promotions-daily-bonus__news-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

.page-promotions-daily-bonus__news-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions-daily-bonus__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-bonus__news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-daily-bonus__news-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    flex-grow: 1;
}

.page-promotions-daily-bonus__news-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-daily-bonus__news-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions-daily-bonus__news-summary {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-promotions-daily-bonus__news-date {
    font-size: 14px;
    color: #aaaaaa;
    text-align: right;
    display: block;
}

.page-promotions-daily-bonus__view-all {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-bonus__main-title {
        font-size: 38px;
    }

    .page-promotions-daily-bonus__section-title {
        font-size: 32px;
    }

    .page-promotions-daily-bonus__hero-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-bonus__hero-section {
        padding-top: 140px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
    }

    .page-promotions-daily-bonus__main-title {
        font-size: 30px;
    }

    .page-promotions-daily-bonus__section-title {
        font-size: 26px;
    }

    .page-promotions-daily-bonus__hero-description {
        font-size: 16px;
    }

    .page-promotions-daily-bonus__cta-button,
    .page-promotions-daily-bonus__btn-primary,
    .page-promotions-daily-bonus__btn-secondary {
        padding: 12px 25px;
        font-size: 16px;
    }

    .page-promotions-daily-bonus__intro-section,
    .page-promotions-daily-bonus__guide-section,
    .page-promotions-daily-bonus__other-promos-section,
    .page-promotions-daily-bonus__faq-section,
    .page-promotions-daily-bonus__news-section {
        padding: 40px 15px;
    }

    .page-promotions-daily-bonus__text-block {
        font-size: 15px;
    }

    .page-promotions-daily-bonus__step-card,
    .page-promotions-daily-bonus__promo-card,
    .page-promotions-daily-bonus__news-card {
        padding: 20px;
    }

    .page-promotions-daily-bonus__step-icon {
        width: 100px;
        height: 100px;
    }

    .page-promotions-daily-bonus__step-title {
        font-size: 20px;
    }

    .page-promotions-daily-bonus__promo-title {
        font-size: 20px;
    }

    .page-promotions-daily-bonus__news-title {
        font-size: 18px;
    }

    .page-promotions-daily-bonus__news-image {
        height: 180px;
    }

    .page-promotions-daily-bonus__faq-question h3 {
        font-size: 16px;
    }

    .page-promotions-daily-bonus__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }

    .page-promotions-daily-bonus__faq-answer {
        padding: 0 15px;
    }

    .page-promotions-daily-bonus__faq-item.active .page-promotions-daily-bonus__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-bonus__main-title {
        font-size: 26px;
    }

    .page-promotions-daily-bonus__section-title {
        font-size: 22px;
    }

    .page-promotions-daily-bonus__hero-description {
        font-size: 14px;
    }

    .page-promotions-daily-bonus__cta-button,
    .page-promotions-daily-bonus__btn-primary,
    .page-promotions-daily-bonus__btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .page-promotions-daily-bonus__step-icon {
        width: 80px;
        height: 80px;
    }

    .page-promotions-daily-bonus__step-title {
        font-size: 18px;
    }

    .page-promotions-daily-bonus__promo-title {
        font-size: 18px;
    }

    .page-promotions-daily-bonus__news-title {
        font-size: 16px;
    }

    .page-promotions-daily-bonus__news-image {
        height: 150px;
    }

    .page-promotions-daily-bonus__faq-question h3 {
        font-size: 14px;
    }

    .page-promotions-daily-bonus__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
}