/* style/promotions-daily-deposit-bonus.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark-bg: #FFFFFF;
    --text-color-light-bg: #333333;
    --background-color-body: #0a0a0a; /* From shared.css */
    --button-register-bg: #C30808;
    --button-login-bg: #C30808;
    --button-text-color: #FFFF00;
}

.page-promotions-daily-deposit-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark-bg); /* Default text color for dark body background */
    background-color: var(--background-color-body);
}

.page-promotions-daily-deposit-bonus__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
}

.page-promotions-daily-deposit-bonus__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
}

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

/* Hero Section */
.page-promotions-daily-deposit-bonus__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background-color: #017439; /* Use primary color for hero background */
    color: #FFFFFF;
}

.page-promotions-daily-deposit-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-promotions-daily-deposit-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-deposit-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-dark-bg);
}

.page-promotions-daily-deposit-bonus__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-promotions-daily-deposit-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* General Section Styling */
.page-promotions-daily-deposit-bonus__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-promotions-daily-deposit-bonus__dark-bg .page-promotions-daily-deposit-bonus__section-title {
    color: var(--text-color-dark-bg);
}

.page-promotions-daily-deposit-bonus__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-daily-deposit-bonus__dark-bg .page-promotions-daily-deposit-bonus__text-block {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.page-promotions-daily-deposit-bonus__btn-primary {
    display: inline-block;
    background-color: var(--button-register-bg); /* Custom color for register/login */
    color: var(--button-text-color); /* Custom text color for register/login */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-daily-deposit-bonus__btn-primary:hover {
    background-color: #e02f2f;
    transform: translateY(-2px);
}

/* About Bonus Section */
.page-promotions-daily-deposit-bonus__about-bonus-section {
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
    padding: 60px 0;
}

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

.page-promotions-daily-deposit-bonus__benefit-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--text-color-light-bg);
}

.page-promotions-daily-deposit-bonus__benefit-card:hover {
    transform: translateY(-5px);
}

.page-promotions-daily-deposit-bonus__benefit-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-deposit-bonus__benefit-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-daily-deposit-bonus__benefit-description {
    font-size: 1em;
    color: #555555;
}

/* How to Claim Section */
.page-promotions-daily-deposit-bonus__how-to-claim-section {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
    padding: 60px 0;
    text-align: center;
}

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

.page-promotions-daily-deposit-bonus__step-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-color-dark-bg);
}

.page-promotions-daily-deposit-bonus__step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions-daily-deposit-bonus__step-title {
    font-size: 1.6em;
    color: var(--text-color-dark-bg);
    margin-bottom: 15px;
}

.page-promotions-daily-deposit-bonus__step-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions-daily-deposit-bonus__step-description a {
    color: var(--button-text-color);
    text-decoration: underline;
}

.page-promotions-daily-deposit-bonus__step-image-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promotions-daily-deposit-bonus__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

/* Terms & Conditions Section */
.page-promotions-daily-deposit-bonus__terms-conditions-section {
    background-color: var(--secondary-color);
    color: var(--text-color-light-bg);
    padding: 60px 0;
}

.page-promotions-daily-deposit-bonus__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
    font-size: 1.05em;
}

.page-promotions-daily-deposit-bonus__term-item {
    margin-bottom: 15px;
    color: #444444;
}

.page-promotions-daily-deposit-bonus__term-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions-daily-deposit-bonus__faq-section {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
    padding: 60px 0;
}

.page-promotions-daily-deposit-bonus__faq-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-promotions-daily-deposit-bonus__faq-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-promotions-daily-deposit-bonus__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-deposit-bonus__faq-list {
    flex: 2;
    max-width: 800px;
}

.page-promotions-daily-deposit-bonus__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-deposit-bonus__faq-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-daily-deposit-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-color-dark-bg);
}

.page-promotions-daily-deposit-bonus__faq-question h3 {
    margin: 0;
    color: inherit;
}

.page-promotions-daily-deposit-bonus__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--button-text-color);
}

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

.page-promotions-daily-deposit-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.page-promotions-daily-deposit-bonus__faq-item.active .page-promotions-daily-deposit-bonus__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to ensure content is visible */
    padding: 15px 25px 20px;
}

/* CTA Section */
.page-promotions-daily-deposit-bonus__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--background-color-body);
    color: var(--text-color-dark-bg);
}

.page-promotions-daily-deposit-bonus__cta-card {
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-deposit-bonus__cta-title {
    font-size: 2.8em;
    color: var(--text-color-dark-bg);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-promotions-daily-deposit-bonus__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.page-promotions-daily-deposit-bonus__cta-button {
    position: relative;
    z-index: 2;
}

.page-promotions-daily-deposit-bonus__cta-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    border-radius: 15px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-deposit-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-deposit-bonus__cta-title {
        font-size: 2.4em;
    }
    .page-promotions-daily-deposit-bonus__faq-grid {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-deposit-bonus__faq-list, .page-promotions-daily-deposit-bonus__faq-image-wrapper {
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-deposit-bonus {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions-daily-deposit-bonus__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions-daily-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-deposit-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-daily-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-deposit-bonus__text-block {
        font-size: 0.95em;
    }
    .page-promotions-daily-deposit-bonus__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-deposit-bonus__benefits-grid, .page-promotions-daily-deposit-bonus__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-deposit-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-daily-deposit-bonus__faq-answer {
        padding: 10px 20px 15px;
    }
    .page-promotions-daily-deposit-bonus__faq-item.active .page-promotions-daily-deposit-bonus__faq-answer {
        padding: 15px 20px 20px;
    }
    .page-promotions-daily-deposit-bonus__cta-title {
        font-size: 2em;
    }
    .page-promotions-daily-deposit-bonus__cta-description {
        font-size: 1.1em;
    }

    /* Image, Video, Button Responsive Overrides */
    .page-promotions-daily-deposit-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions-daily-deposit-bonus__section,
    .page-promotions-daily-deposit-bonus__card,
    .page-promotions-daily-deposit-bonus__container,
    .page-promotions-daily-deposit-bonus__hero-content,
    .page-promotions-daily-deposit-bonus__cta-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-promotions-daily-deposit-bonus__cta-button,
    .page-promotions-daily-deposit-bonus__btn-primary,
    .page-promotions-daily-deposit-bonus a[class*="button"],
    .page-promotions-daily-deposit-bonus a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-daily-deposit-bonus__cta-buttons,
    .page-promotions-daily-deposit-bonus__button-group,
    .page-promotions-daily-deposit-bonus__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-promotions-daily-deposit-bonus__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-deposit-bonus__cta-title {
        font-size: 1.6em;
    }
    .page-promotions-daily-deposit-bonus__cta-card {
        padding: 30px 20px;
    }
}