/* style/promotions-daily-bonuses.css */

.page-promotions-daily-bonuses {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0F1A2B; /* Darker background for sections */
}

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

.page-promotions-daily-bonuses__hero {
    background: linear-gradient(135deg, #1A2E47 0%, #0F1A2B 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-bonuses__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern,subtle]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-daily-bonuses__hero > * {
    position: relative;
    z-index: 1;
}

.page-promotions-daily-bonuses__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    line-height: 1.2;
    font-weight: bold;
}

.page-promotions-daily-bonuses__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #B0B0B0;
}

.page-promotions-daily-bonuses__section {
    padding: 60px 0;
    background-color: #1A2E47;
    margin-bottom: 20px; /* Space between sections */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-bonuses__section:nth-of-type(even) {
    background-color: #0F1A2B;
}

.page-promotions-daily-bonuses__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-daily-bonuses__highlight {
    color: #FFD700;
}

.page-promotions-daily-bonuses__description {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #B0B0B0;
}

.page-promotions-daily-bonuses__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-daily-bonuses__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-promotions-daily-bonuses__text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-promotions-daily-bonuses__text-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-promotions-daily-bonuses__image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.page-promotions-daily-bonuses__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-bonuses__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    margin-top: 20px;
}

.page-promotions-daily-bonuses__btn--primary {
    background-color: #FFD700; /* Accent color for primary buttons */
    color: #1A2E47; /* Dark text for primary buttons */
}

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

.page-promotions-daily-bonuses__btn--secondary {
    background-color: #2C4A6F; /* Darker shade of main color */
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-promotions-daily-bonuses__btn--secondary:hover {
    background-color: #3A5F8C;
    transform: translateY(-2px);
}

.page-promotions-daily-bonuses__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-promotions-daily-bonuses__link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-daily-bonuses__link-inline:hover {
    color: #E0B800;
    text-decoration: underline;
}

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

.page-promotions-daily-bonuses__card {
    background-color: #2C4A6F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-bonuses__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-daily-bonuses__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-daily-bonuses__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #B0B0B0;
}

.page-promotions-daily-bonuses__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-promotions-daily-bonuses__list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #E0E0E0;
}

.page-promotions-daily-bonuses__list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promotions-daily-bonuses__list--tips li::before {
    content: '💡';
    font-size: 1.2em;
    left: 0;
}

.page-promotions-daily-bonuses__faq-item {
    background-color: #2C4A6F;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-bonuses__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-daily-bonuses__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-daily-bonuses__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-daily-bonuses__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-promotions-daily-bonuses__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.page-promotions-daily-bonuses__section--cta {
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #E0B800 100%);
    color: #1A2E47;
    padding: 80px 0;
    border-radius: 0;
    box-shadow: none;
}

.page-promotions-daily-bonuses__section--cta .page-promotions-daily-bonuses__heading {
    color: #1A2E47;
    margin-top: 20px;
}

.page-promotions-daily-bonuses__section--cta .page-promotions-daily-bonuses__description {
    color: #333;
    margin-bottom: 40px;
}

.page-promotions-daily-bonuses__cta-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.page-promotions-daily-bonuses__section--cta .page-promotions-daily-bonuses__btn--primary {
    background-color: #1A2E47;
    color: #FFD700;
}

.page-promotions-daily-bonuses__section--cta .page-promotions-daily-bonuses__btn--primary:hover {
    background-color: #0F1A2B;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-bonuses__title {
        font-size: 2.8em;
    }
    .page-promotions-daily-bonuses__heading {
        font-size: 2em;
    }
    .page-promotions-daily-bonuses__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-daily-bonuses__content-wrapper--reversed {
        flex-direction: column;
    }
    .page-promotions-daily-bonuses__text-content, .page-promotions-daily-bonuses__image-wrapper {
        max-width: 100%;
    }
    .page-promotions-daily-bonuses__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-bonuses__hero {
        padding: 80px 0;
    }
    .page-promotions-daily-bonuses__title {
        font-size: 2.2em;
    }
    .page-promotions-daily-bonuses__subtitle {
        font-size: 1.2em;
    }
    .page-promotions-daily-bonuses__heading {
        font-size: 1.8em;
    }
    .page-promotions-daily-bonuses__section {
        padding: 40px 0;
    }
    .page-promotions-daily-bonuses__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-bonuses__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-daily-bonuses__card-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions-daily-bonuses__card-title {
        font-size: 1.3em;
    }
    .page-promotions-daily-bonuses__list li, .page-promotions-daily-bonuses__text-content p, .page-promotions-daily-bonuses__description, .page-promotions-daily-bonuses__card-text {
        font-size: 0.95em;
    }
    .page-promotions-daily-bonuses__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-daily-bonuses__faq-answer {
        font-size: 0.9em;
    }
}