/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2342; /* Primary dark background */
}

.page-promotions-daily-rebate a {
    color: #E0B400; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-daily-rebate a:hover {
    color: #f5dcbd; /* Lighter accent on hover */
}

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

/* Hero Section */
.page-promotions-daily-rebate__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a5e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-daily-rebate__hero > div {
    position: relative;
    z-index: 1;
}

.page-promotions-daily-rebate__hero-title {
    font-size: 3.5em;
    color: #E0B400; /* Accent color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__hero-subtitle {
    font-size: 1.4em;
    color: #f5f5f5;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-promotions-daily-rebate__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions-daily-rebate__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__btn--primary {
    background-color: #E0B400; /* Accent color */
    color: #0A2342; /* Dark text for accent background */
    border: 2px solid #E0B400;
}

.page-promotions-daily-rebate__btn--primary:hover {
    background-color: #f5dcbd;
    border-color: #f5dcbd;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__btn--secondary {
    background-color: transparent;
    color: #E0B400; /* Accent text for transparent background */
    border: 2px solid #E0B400;
}

.page-promotions-daily-rebate__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* General Section Styling */
.page-promotions-daily-rebate__section {
    padding: 80px 0;
}

.page-promotions-daily-rebate__section--dark-bg {
    background-color: #0F2E52;
}

.page-promotions-daily-rebate__section-title {
    font-size: 2.8em;
    color: #E0B400; /* Accent for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-daily-rebate__section-title--accent {
    color: #f5f5f5;
}

.page-promotions-daily-rebate__section-title--accent::after {
    background-color: #f5f5f5;
}

.page-promotions-daily-rebate__description {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #ccc;
}

.page-promotions-daily-rebate__description--large {
    font-size: 1.25em;
}

/* Intro Section */
.page-promotions-daily-rebate__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-promotions-daily-rebate__text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-promotions-daily-rebate__image-wrapper {
    text-align: center;
}

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

/* How It Works Section */
.page-promotions-daily-rebate__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions-daily-rebate__step-card {
    background-color: #1a3a5e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-rebate__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-daily-rebate__step-title {
    font-size: 1.8em;
    color: #E0B400; /* Accent color */
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__step-text {
    font-size: 1em;
    line-height: 1.7;
    color: #ccc;
}

/* Benefits Section */
.page-promotions-daily-rebate__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-daily-rebate__benefit-card {
    background-color: #1a3a5e;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-daily-rebate__benefit-card:hover {
    transform: translateY(-5px);
    background-color: #214d7b;
}

.page-promotions-daily-rebate__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px #E0B400);
}

.page-promotions-daily-rebate__benefit-title {
    font-size: 1.6em;
    color: #E0B400; /* Accent color */
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__benefit-text {
    font-size: 1em;
    line-height: 1.7;
    color: #ccc;
}

/* Rebate Rates Table */
.page-promotions-daily-rebate__table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.page-promotions-daily-rebate__rebate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #1a3a5e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__rebate-table th,
.page-promotions-daily-rebate__rebate-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #0A2342;
    font-size: 1.05em;
}

.page-promotions-daily-rebate__rebate-table th {
    background-color: #0F2E52;
    color: #E0B400; /* Accent color for table headers */
    font-weight: bold;
    text-transform: uppercase;
}

.page-promotions-daily-rebate__rebate-table tbody tr:nth-child(even) {
    background-color: #15324d;
}

.page-promotions-daily-rebate__rebate-table tbody tr:hover {
    background-color: #214d7b;
}

.page-promotions-daily-rebate__rebate-table td {
    color: #f0f0f0;
}

.page-promotions-daily-rebate__note {
    font-size: 0.95em;
    color: #aaa;
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* Terms & Conditions */
.page-promotions-daily-rebate__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 50px;
    max-width: 900px;
}

.page-promotions-daily-rebate__list li {
    background-color: #1a3a5e;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-left: 5px solid #E0B400; /* Accent border */
    border-radius: 8px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__list li strong {
    color: #E0B400;
}

.page-promotions-daily-rebate__text-center {
    text-align: center;
}

/* CTA Section */
.page-promotions-daily-rebate__cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Responsible Gaming */
.page-promotions-daily-rebate__responsible-gaming .page-promotions-daily-rebate__content-grid {
    grid-template-columns: 1fr 1.2fr;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-rebate__hero-title {
        font-size: 2.8em;
    }

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

    .page-promotions-daily-rebate__section-title {
        font-size: 2.2em;
    }

    .page-promotions-daily-rebate__content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-promotions-daily-rebate__image-wrapper {
        order: -1; /* Image first on mobile for intro section */
    }

    .page-promotions-daily-rebate__responsible-gaming .page-promotions-daily-rebate__image-wrapper {
        order: 0;
    }

    .page-promotions-daily-rebate__steps-grid,
    .page-promotions-daily-rebate__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .page-promotions-daily-rebate__hero-actions,
    .page-promotions-daily-rebate__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-daily-rebate__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate__hero {
        padding: 80px 0;
    }

    .page-promotions-daily-rebate__hero-title {
        font-size: 2.2em;
    }

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

    .page-promotions-daily-rebate__section {
        padding: 60px 0;
    }

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

    .page-promotions-daily-rebate__rebate-table th,
    .page-promotions-daily-rebate__rebate-table td {
        padding: 12px 15px;
        font-size: 0.95em;
    }

    .page-promotions-daily-rebate__btn {
        width: 90%;
    }
}

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

    .page-promotions-daily-rebate__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions-daily-rebate__hero-actions {
        gap: 10px;
    }

    .page-promotions-daily-rebate__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .page-promotions-daily-rebate__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .page-promotions-daily-rebate__description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-promotions-daily-rebate__step-card,
    .page-promotions-daily-rebate__benefit-card {
        padding: 20px;
    }

    .page-promotions-daily-rebate__list li {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}