/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

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

.page-promotions-daily-rebate .section-intro {
    background-color: #1A202C;
}

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

.page-promotions-daily-rebate .section-benefits {
    background-color: #1A202C;
}

.page-promotions-daily-rebate .section-games {
    background-color: #2D3748;
}

.page-promotions-daily-rebate .section-register-bonus {
    background-color: #1A202C;
}

.page-promotions-daily-rebate .section-app-download {
    background-color: #2D3748;
}

.page-promotions-daily-rebate .section-why-winclub {
    background-color: #1A202C;
}

.page-promotions-daily-rebate .section-faq {
    background-color: #2D3748;
}

.page-promotions-daily-rebate .section-conclusion {
    background-color: #1A202C;
}

.page-promotions-daily-rebate .hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
    padding: 100px 0;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.page-promotions-daily-rebate .hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-promotions-daily-rebate .hero-content {
    flex: 1;
    max-width: 600px;
}

.page-promotions-daily-rebate .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    line-height: 1.2;
}

.page-promotions-daily-rebate .hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions-daily-rebate .hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.page-promotions-daily-rebate .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate .hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.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 h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-promotions-daily-rebate .btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-promotions-daily-rebate .btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text for contrast */
}

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

.page-promotions-daily-rebate .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-promotions-daily-rebate .btn-small {
    padding: 10px 20px;
    font-size: 0.95em;
}

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

.page-promotions-daily-rebate .section-image {
    max-width: 80%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate .cta-box {
    background-color: #2D3748;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    margin: 40px auto;
    max-width: 700px;
    text-align: center;
}

.page-promotions-daily-rebate .cta-box p {
    font-size: 1.15em;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.page-promotions-daily-rebate .benefit-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
}

.page-promotions-daily-rebate .benefit-list li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05em;
    color: #E0E0E0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rebate .benefit-list li::before {
    content: '✅';
    font-size: 1.2em;
    color: #FFD700;
    margin-top: 2px;
    flex-shrink: 0;
}

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

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

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

.page-promotions-daily-rebate .game-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-daily-rebate .game-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate .game-item p {
    font-size: 0.95em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-promotions-daily-rebate .section-register-bonus .container,
.page-promotions-daily-rebate .section-app-download .container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.page-promotions-daily-rebate .section-register-bonus .register-bonus-content,
.page-promotions-daily-rebate .section-app-download .app-download-content {
    flex: 1;
}

.page-promotions-daily-rebate .section-register-bonus .register-bonus-image,
.page-promotions-daily-rebate .section-app-download .app-download-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-daily-rebate .promo-image,
.page-promotions-daily-rebate .mobile-app-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate .download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-promotions-daily-rebate .btn-download {
    background-color: #FFD700;
    color: #1A202C;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    padding: 12px 25px;
}

.page-promotions-daily-rebate .btn-download:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-daily-rebate .btn-download i {
    font-size: 1.4em;
}

.page-promotions-daily-rebate .qr-code-image {
    max-width: 180px;
    height: auto;
    border: 5px solid #FFD700;
    border-radius: 5px;
    margin-top: 15px;
}

.page-promotions-daily-rebate .small-text {
    font-size: 0.9em;
    color: #AAAAAA;
}

.page-promotions-daily-rebate .why-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
}

.page-promotions-daily-rebate .why-list li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05em;
    color: #E0E0E0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rebate .why-list li::before {
    content: '⭐';
    font-size: 1.2em;
    color: #FFD700;
    margin-top: 2px;
    flex-shrink: 0;
}

.page-promotions-daily-rebate .faq-item {
    background-color: #2D3748;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-rebate .faq-item h3 {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-daily-rebate .faq-item p {
    color: #CCCCCC;
    font-size: 1em;
    margin-bottom: 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-rebate .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-daily-rebate .hero-image-wrapper {
        justify-content: center;
        margin-top: 40px;
    }

    .page-promotions-daily-rebate .hero-title {
        font-size: 2.5em;
    }

    .page-promotions-daily-rebate .section-register-bonus .container,
    .page-promotions-daily-rebate .section-app-download .container {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-daily-rebate .section-register-bonus .register-bonus-image,
    .page-promotions-daily-rebate .section-app-download .app-download-image {
        margin-top: 40px;
    }

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

    .page-promotions-daily-rebate h3 {
        font-size: 1.5em;
    }

    .page-promotions-daily-rebate .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .page-promotions-daily-rebate .hero-title {
        font-size: 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 h3 {
        font-size: 1.3em;
    }

    .page-promotions-daily-rebate .btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-daily-rebate .large-btn {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    .page-promotions-daily-rebate .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-daily-rebate .btn-download {
        width: 100%;
        justify-content: center;
    }
}

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

    .page-promotions-daily-rebate .hero-description {
        font-size: 0.95em;
    }

    .page-promotions-daily-rebate .hero-cta {
        flex-direction: column;
    }

    .page-promotions-daily-rebate .btn-primary, .page-promotions-daily-rebate .btn-secondary {
        width: 100%;
    }

    .page-promotions-daily-rebate .section-title {
        font-size: 1.6em;
    }

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

    .page-promotions-daily-rebate p {
        font-size: 0.9em;
    }

    .page-promotions-daily-rebate .game-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-rebate .conclusion-cta {
        flex-direction: column;
    }
}