/* style/promotions-daily-rebate-explanation.css */

.page-promotions-daily-rebate-explanation {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

.page-promotions-daily-rebate-explanation__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-promotions-daily-rebate-explanation__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-daily-rebate-explanation__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate-explanation__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #ffffff;
}

.page-promotions-daily-rebate-explanation__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.page-promotions-daily-rebate-explanation__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.7);
}

.page-promotions-daily-rebate-explanation__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-rebate-explanation__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-daily-rebate-explanation__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #4a4a4a;
}

.page-promotions-daily-rebate-explanation__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate-explanation__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-daily-rebate-explanation__secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate-explanation__secondary-button:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
}

.page-promotions-daily-rebate-explanation__intro-section,
.page-promotions-daily-rebate-explanation__how-it-works-section,
.page-promotions-daily-rebate-explanation__eligible-games-section,
.page-promotions-daily-rebate-explanation__terms-conditions-section,
.page-promotions-daily-rebate-explanation__responsible-gaming-section,
.page-promotions-daily-rebate-explanation__faq-section,
.page-promotions-daily-rebate-explanation__cta-bottom-section {
    padding: 60px 0;
}

.page-promotions-daily-rebate-explanation__intro-section {
    background-color: #ffffff;
}

.page-promotions-daily-rebate-explanation__how-it-works-section {
    background-color: #eaf1f6;
}

.page-promotions-daily-rebate-explanation__eligible-games-section {
    background-color: #ffffff;
}

.page-promotions-daily-rebate-explanation__terms-conditions-section {
    background-color: #eaf1f6;
}

.page-promotions-daily-rebate-explanation__responsible-gaming-section {
    background-color: #003366;
    color: #ffffff;
}

.page-promotions-daily-rebate-explanation__responsible-gaming-section .page-promotions-daily-rebate-explanation__section-title {
    color: #FFD700;
}

.page-promotions-daily-rebate-explanation__responsible-gaming-section .page-promotions-daily-rebate-explanation__text-block {
    color: #e0e0e0;
}

.page-promotions-daily-rebate-explanation__faq-section {
    background-color: #ffffff;
}

.page-promotions-daily-rebate-explanation__cta-bottom-section {
    background: linear-gradient(90deg, #003366, #004488);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-daily-rebate-explanation__cta-bottom-section .page-promotions-daily-rebate-explanation__section-title {
    color: #FFD700;
}

.page-promotions-daily-rebate-explanation__cta-bottom-section .page-promotions-daily-rebate-explanation__text-block {
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-daily-rebate-explanation__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-rebate-explanation__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-promotions-daily-rebate-explanation__step-description {
    font-size: 1em;
    color: #555;
}

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

.page-promotions-daily-rebate-explanation__game-type-item {
    background-color: #fcfcfc;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.page-promotions-daily-rebate-explanation__game-type-item:hover {
    border-color: #FFD700;
}

.page-promotions-daily-rebate-explanation__game-type-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-promotions-daily-rebate-explanation__game-type-title {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate-explanation__game-type-description {
    font-size: 0.95em;
    color: #666;
}

.page-promotions-daily-rebate-explanation__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-daily-rebate-explanation__list-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 5px solid #FFD700;
    font-size: 1.05em;
    color: #333;
}

.page-promotions-daily-rebate-explanation__list-item strong {
    color: #003366;
}

.page-promotions-daily-rebate-explanation__responsible-gaming-image {
    display: block;
    max-width: 200px;
    margin: 40px auto 0 auto;
    filter: brightness(0.8) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-daily-rebate-explanation__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    transition: box-shadow 0.3s ease;
}

.page-promotions-daily-rebate-explanation__faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-promotions-daily-rebate-explanation__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-daily-rebate-explanation__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate-explanation__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-daily-rebate-explanation__faq-answer {
    font-size: 1em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease, padding-top 0.5s ease;
}

.page-promotions-daily-rebate-explanation__faq-answer.active {
    display: block;
    opacity: 1;
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-promotions-daily-rebate-explanation__button-group {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate-explanation__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-daily-rebate-explanation__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-daily-rebate-explanation__section-title {
        font-size: 2em;
    }

    .page-promotions-daily-rebate-explanation__steps-grid,
    .page-promotions-daily-rebate-explanation__game-types-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-rebate-explanation__cta-button,
    .page-promotions-daily-rebate-explanation__secondary-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate-explanation__hero-title {
        font-size: 2em;
    }

    .page-promotions-daily-rebate-explanation__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-daily-rebate-explanation__section-title {
        font-size: 1.8em;
    }

    .page-promotions-daily-rebate-explanation__text-block {
        font-size: 1em;
    }

    .page-promotions-daily-rebate-explanation__step-item,
    .page-promotions-daily-rebate-explanation__game-type-item {
        padding: 20px;
    }

    .page-promotions-daily-rebate-explanation__faq-question {
        font-size: 1.1em;
    }
}