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

.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light gray for text, good contrast on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

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

.page-promotions-daily-rebate__section:nth-of-type(even) {
    background-color: #2D3748; /* Slightly lighter dark for alternating sections */
}

.page-promotions-daily-rebate__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-daily-rebate__section-title .highlight {
    color: #E2E8F0; /* White for keyword highlight */
}

.page-promotions-daily-rebate__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__text-content {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #CBD5E0; /* Lighter gray for paragraphs */
}

.page-promotions-daily-rebate__text-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-rebate__text-content a:hover {
    text-decoration: underline;
}

.page-promotions-daily-rebate__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #303B4D 100%); /* Gradient background for hero */
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-rebate__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-promotions-daily-rebate__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-daily-rebate__hero-title .highlight {
    color: #E2E8F0;
}

.page-promotions-daily-rebate__hero-description {
    font-size: 1.3em;
    color: #CBD5E0;
    margin-bottom: 40px;
}

.page-promotions-daily-rebate__hero-image-wrapper {
    margin-top: 50px;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 0;
}

.page-promotions-daily-rebate__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C;
    padding: 15px 35px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-daily-rebate__cta-button:hover {
    background-color: #E2B800; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

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

.page-promotions-daily-rebate__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-daily-rebate__feature-item p {
    color: #CBD5E0;
    font-size: 1em;
}

.page-promotions-daily-rebate__how-it-works {
    background-color: #2D3748;
}

.page-promotions-daily-rebate__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-daily-rebate__steps-list li {
    background-color: #1A202C;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-promotions-daily-rebate__steps-list li h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate__steps-list li h3 .highlight {
    color: #E2E8F0;
}

.page-promotions-daily-rebate__steps-list li p {
    color: #CBD5E0;
    font-size: 1.05em;
}

.page-promotions-daily-rebate__steps-list li p a {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
}

.page-promotions-daily-rebate__steps-list li p a:hover {
    text-decoration: underline;
}

.page-promotions-daily-rebate__note {
    font-style: italic;
    color: #A0AEC0;
    margin-top: 30px;
    font-size: 0.95em;
}

.page-promotions-daily-rebate__action-area {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-promotions-daily-rebate__secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 15px 35px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.page-promotions-daily-rebate__secondary-button:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-daily-rebate__game-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-daily-rebate__game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions-daily-rebate__game-card h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__game-card p {
    color: #CBD5E0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-promotions-daily-rebate__game-link {
    display: inline-block;
    color: #E2E8F0;
    background-color: #3F51B5; /* A blue for variety, ensuring contrast */
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-daily-rebate__game-link:hover {
    background-color: #283593;
    transform: translateY(-2px);
}

.page-promotions-daily-rebate__faq-item {
    background-color: #1A202C;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-promotions-daily-rebate__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions-daily-rebate__faq-item h3 .highlight {
    color: #E2E8F0;
}

.page-promotions-daily-rebate__faq-item p {
    color: #CBD5E0;
    font-size: 1em;
    display: none; /* Initially hidden */
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 10px;
}

.page-promotions-daily-rebate__faq-item p a {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
}

.page-promotions-daily-rebate__faq-item p a:hover {
    text-decoration: underline;
}

.page-promotions-daily-rebate__faq-item.active p {
    display: block; /* Show when active */
}

.page-promotions-daily-rebate__final-cta {
    background-color: #1A202C;
    padding: 80px 20px;
}

.page-promotions-daily-rebate__cta-button--large {
    padding: 18px 45px;
    font-size: 1.4em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-rebate__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-rebate__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebate__features-grid,
    .page-promotions-daily-rebate__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate__hero-section {
        flex-direction: column;
        padding: 80px 15px;
    }
    .page-promotions-daily-rebate__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-rebate__hero-description {
        font-size: 1em;
    }
    .page-promotions-daily-rebate__section {
        padding: 40px 0;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__text-content {
        font-size: 0.95em;
    }
    .page-promotions-daily-rebate__action-area {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-daily-rebate__cta-button,
    .page-promotions-daily-rebate__secondary-button,
    .page-promotions-daily-rebate__cta-button--large {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-promotions-daily-rebate__steps-list li h3 {
        font-size: 1.4em;
    }
    .page-promotions-daily-rebate__faq-item h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__hero-description {
        font-size: 0.9em;
    }
    .page-promotions-daily-rebate__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebate__features-grid,
    .page-promotions-daily-rebate__game-categories {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-rebate__steps-list li h3 {
        font-size: 1.2em;
    }
    .page-promotions-daily-rebate__faq-item h3 {
        font-size: 1.1em;
    }
}