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

:root {
    --s8bet-green-main: #11A84E;
    --s8bet-green-accent: #22C768;
    --s8bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --s8bet-card-bg: #11271B;
    --s8bet-background: #08160F;
    --s8bet-text-main: #F2FFF6;
    --s8bet-text-secondary: #A7D9B8;
    --s8bet-border: #2E7A4E;
    --s8bet-glow: #57E38D;
    --s8bet-gold: #F2C14E;
    --s8bet-divider: #1E3A2A;
    --s8bet-deep-green: #0A4B2C;
}

.page-promotions-daily-cashback {
    background-color: var(--s8bet-background);
    color: var(--s8bet-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions-daily-cashback__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-daily-cashback__section-title {
    font-size: 2.5em;
    color: var(--s8bet-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-promotions-daily-cashback__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--s8bet-text-secondary);
    text-align: justify;
}

.page-promotions-daily-cashback__text-block strong {
    color: var(--s8bet-text-main);
}

.page-promotions-daily-cashback a {
    color: var(--s8bet-green-accent);
    text-decoration: none;
}

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

/* Hero Section */
.page-promotions-daily-cashback__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-promotions-daily-cashback__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 700px;
}

.page-promotions-daily-cashback__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly over image for visual flow */
    position: relative;
    z-index: 1;
    background: rgba(8, 22, 15, 0.85); /* Semi-transparent background for text readability */
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--s8bet-border);
}

.page-promotions-daily-cashback__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    color: var(--s8bet-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-promotions-daily-cashback__hero-description {
    font-size: 1.2em;
    color: var(--s8bet-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-daily-cashback__cta-buttons--center {
    margin-top: 40px;
}

.page-promotions-daily-cashback__btn-primary,
.page-promotions-daily-cashback__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-daily-cashback__btn-primary {
    background: var(--s8bet-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions-daily-cashback__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
    opacity: 0.9;
}

.page-promotions-daily-cashback__btn-secondary {
    background: transparent;
    color: var(--s8bet-green-accent);
    border: 2px solid var(--s8bet-green-accent);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.2);
}

.page-promotions-daily-cashback__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--s8bet-green-accent);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.4);
}

/* Introduction Section */
.page-promotions-daily-cashback__introduction-section,
.page-promotions-daily-cashback__how-to-participate-section,
.page-promotions-daily-cashback__terms-section,
.page-promotions-daily-cashback__advantages-section,
.page-promotions-daily-cashback__products-section,
.page-promotions-daily-cashback__faq-section,
.page-promotions-daily-cashback__conclusion-section {
    padding: 60px 0;
    position: relative;
}

/* How to Participate Section */
.page-promotions-daily-cashback__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-promotions-daily-cashback__step-card {
    background-color: var(--s8bet-card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--s8bet-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-cashback__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.page-promotions-daily-cashback__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--s8bet-button-gradient);
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(34, 199, 104, 0.5);
}

.page-promotions-daily-cashback__step-title {
    font-size: 1.5em;
    color: var(--s8bet-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-cashback__step-description {
    color: var(--s8bet-text-secondary);
}

.page-promotions-daily-cashback__process-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    min-width: 200px;
    min-height: 200px;
}

/* Terms Section */
.page-promotions-daily-cashback__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-daily-cashback__terms-list li {
    background-color: var(--s8bet-card-bg);
    border: 1px solid var(--s8bet-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    color: var(--s8bet-text-secondary);
    font-size: 1.05em;
}

.page-promotions-daily-cashback__terms-list li p {
    margin: 0;
    color: var(--s8bet-text-secondary);
}

.page-promotions-daily-cashback__terms-list li strong {
    color: var(--s8bet-text-main);
}

.page-promotions-daily-cashback__terms-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    min-width: 200px;
    min-height: 200px;
}

/* Advantages Section */
.page-promotions-daily-cashback__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-cashback__advantage-card {
    background-color: var(--s8bet-card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--s8bet-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-cashback__advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.page-promotions-daily-cashback__advantage-title {
    font-size: 1.4em;
    color: var(--s8bet-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-cashback__advantage-description {
    color: var(--s8bet-text-secondary);
}

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

.page-promotions-daily-cashback__product-card {
    background-color: var(--s8bet-card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--s8bet-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-daily-cashback__product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.page-promotions-daily-cashback__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions-daily-cashback__product-title {
    font-size: 1.3em;
    color: var(--s8bet-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-daily-cashback__product-title a {
    color: inherit;
    text-decoration: none;
}

.page-promotions-daily-cashback__product-title a:hover {
    text-decoration: underline;
}

.page-promotions-daily-cashback__product-description {
    color: var(--s8bet-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-promotions-daily-cashback__faq-list {
    margin-top: 40px;
}

.page-promotions-daily-cashback__faq-item {
    background-color: var(--s8bet-card-bg);
    border: 1px solid var(--s8bet-border);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-promotions-daily-cashback__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    color: var(--s8bet-text-main);
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}

.page-promotions-daily-cashback__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-daily-cashback__faq-question::marker {
    display: none;
}

.page-promotions-daily-cashback__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--s8bet-green-accent);
}

.page-promotions-daily-cashback__faq-item[open] .page-promotions-daily-cashback__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-daily-cashback__faq-answer {
    padding: 0 20px 20px;
    color: var(--s8bet-text-secondary);
    font-size: 1.05em;
}

.page-promotions-daily-cashback__faq-answer p {
    margin: 0;
}

.page-promotions-daily-cashback__faq-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    min-width: 200px;
    min-height: 200px;
}

/* Conclusion Section */
.page-promotions-daily-cashback__conclusion-section .page-promotions-daily-cashback__text-block {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-cashback__hero-content {
        margin-top: -80px;
    }
    .page-promotions-daily-cashback__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-cashback {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions-daily-cashback__hero-section {
        padding-bottom: 40px;
    }
    .page-promotions-daily-cashback__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
        max-width: calc(100% - 30px);
    }
    .page-promotions-daily-cashback__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-promotions-daily-cashback__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-promotions-daily-cashback__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-promotions-daily-cashback__btn-primary,
    .page-promotions-daily-cashback__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-daily-cashback__container,
    .page-promotions-daily-cashback__introduction-section,
    .page-promotions-daily-cashback__how-to-participate-section,
    .page-promotions-daily-cashback__terms-section,
    .page-promotions-daily-cashback__advantages-section,
    .page-promotions-daily-cashback__products-section,
    .page-promotions-daily-cashback__faq-section,
    .page-promotions-daily-cashback__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-promotions-daily-cashback__introduction-section,
    .page-promotions-daily-cashback__how-to-participate-section,
    .page-promotions-daily-cashback__terms-section,
    .page-promotions-daily-cashback__advantages-section,
    .page-promotions-daily-cashback__products-section,
    .page-promotions-daily-cashback__faq-section,
    .page-promotions-daily-cashback__conclusion-section {
        padding: 40px 0;
    }

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

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

    .page-promotions-daily-cashback img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-daily-cashback__process-image,
    .page-promotions-daily-cashback__terms-image,
    .page-promotions-daily-cashback__product-image,
    .page-promotions-daily-cashback__faq-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-promotions-daily-cashback__step-card,
    .page-promotions-daily-cashback__advantage-card,
    .page-promotions-daily-cashback__product-card,
    .page-promotions-daily-cashback__faq-item {
        padding: 20px;
    }

    .page-promotions-daily-cashback__step-title,
    .page-promotions-daily-cashback__advantage-title,
    .page-promotions-daily-cashback__product-title {
        font-size: 1.3em;
    }

    .page-promotions-daily-cashback__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-promotions-daily-cashback__faq-answer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-cashback__hero-content {
        margin-top: -40px;
        padding: 20px 10px;
    }
    .page-promotions-daily-cashback__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-promotions-daily-cashback__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-cashback__steps-grid,
    .page-promotions-daily-cashback__advantages-grid,
    .page-promotions-daily-cashback__product-cards-grid {
        gap: 20px;
    }
}