/* style/blog-zubet-latest-promotions-analysis.css */

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

/* Base styles for the page content */
.page-blog-zubet-latest-promotions-analysis {
    background-color: var(--zubet-background); /* Dark background from custom colors */
    color: var(--zubet-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-zubet-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-zubet-latest-promotions-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--zubet-background);
}

.page-blog-zubet-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

.page-blog-zubet-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-zubet-latest-promotions-analysis__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.page-blog-zubet-latest-promotions-analysis__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--zubet-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-blog-zubet-latest-promotions-analysis__description {
    font-size: 1.15rem;
    color: var(--zubet-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.page-blog-zubet-latest-promotions-analysis__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    padding-top: 10px; /* Small top padding */
    background-color: var(--zubet-deep-green);
}

.page-blog-zubet-latest-promotions-analysis__video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-zubet-latest-promotions-analysis__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-zubet-latest-promotions-analysis__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.page-blog-zubet-latest-promotions-analysis__video-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--zubet-text-main);
}

.page-blog-zubet-latest-promotions-analysis__video-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--zubet-gold);
    margin-bottom: 15px;
}

.page-blog-zubet-latest-promotions-analysis__video-description {
    font-size: 1rem;
    color: var(--zubet-text-secondary);
    margin-bottom: 30px;
}

/* General Content Section */
.page-blog-zubet-latest-promotions-analysis__content-section {
    padding: 60px 0;
}

.page-blog-zubet-latest-promotions-analysis__dark-bg {
    background-color: var(--zubet-background);
    color: var(--zubet-text-main);
}

.page-blog-zubet-latest-promotions-analysis__light-bg {
    background-color: var(--zubet-text-main);
    color: var(--zubet-background);
}

.page-blog-zubet-latest-promotions-analysis__section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--zubet-gold);
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-zubet-latest-promotions-analysis__section-title--light {
    color: var(--zubet-text-main);
}

.page-blog-zubet-latest-promotions-analysis__section-title--dark {
    color: var(--zubet-background);
}

.page-blog-zubet-latest-promotions-analysis__text-block {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--zubet-text-secondary);
}

.page-blog-zubet-latest-promotions-analysis__text-block--light {
    color: var(--zubet-text-main);
}

/* Promotions Grid */
.page-blog-zubet-latest-promotions-analysis__promotions-grid {
    padding: 60px 0;
    background-color: var(--zubet-deep-green);
}

.page-blog-zubet-latest-promotions-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-zubet-latest-promotions-analysis__card {
    background-color: var(--zubet-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    color: var(--zubet-text-main);
    border: 1px solid var(--zubet-border);
}

.page-blog-zubet-latest-promotions-analysis__card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
}

.page-blog-zubet-latest-promotions-analysis__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zubet-gold);
    padding: 20px 20px 10px;
}

.page-blog-zubet-latest-promotions-analysis__card-text {
    font-size: 0.95rem;
    color: var(--zubet-text-secondary);
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-blog-zubet-latest-promotions-analysis__btn-card {
    display: inline-block;
    background: var(--zubet-button-gradient);
    color: var(--zubet-text-main);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 20px 20px;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-zubet-latest-promotions-analysis__btn-card:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* CTA Section */
.page-blog-zubet-latest-promotions-analysis__cta-section {
    background-color: var(--zubet-primary-color);
    padding: 80px 0;
    text-align: center;
    color: var(--zubet-text-main);
}

.page-blog-zubet-latest-promotions-analysis__medium-bg {
    background-color: var(--zubet-primary-color);
}

/* Ordered List (How to Join) */
.page-blog-zubet-latest-promotions-analysis__ordered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: list-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-zubet-latest-promotions-analysis__list-item {
    background-color: var(--zubet-card-bg);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--zubet-border);
    color: var(--zubet-text-main);
}

.page-blog-zubet-latest-promotions-analysis__list-item::before {
    counter-increment: list-counter;
    content: counter(list-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--zubet-gold);
    color: var(--zubet-background);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-zubet-latest-promotions-analysis__list-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--zubet-primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-blog-zubet-latest-promotions-analysis__list-text {
    font-size: 1rem;
    color: var(--zubet-text-secondary);
}

/* FAQ Section */
.page-blog-zubet-latest-promotions-analysis__faq-section {
    padding: 60px 0;
    background-color: var(--zubet-text-main);
    color: var(--zubet-background);
}

.page-blog-zubet-latest-promotions-analysis__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-zubet-latest-promotions-analysis__faq-item {
    background-color: #ffffff;
    border: 1px solid var(--zubet-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-blog-zubet-latest-promotions-analysis__faq-item summary {
    list-style: none;
}

.page-blog-zubet-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-zubet-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--zubet-background);
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--zubet-border);
    transition: background-color 0.3s ease;
}

.page-blog-zubet-latest-promotions-analysis__faq-question:hover {
    background-color: #f0f0f0;
}

.page-blog-zubet-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zubet-primary-color);
    margin-left: 15px;
}

.page-blog-zubet-latest-promotions-analysis__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: #333333;
    background-color: #ffffff;
}

.page-blog-zubet-latest-promotions-analysis__faq-item[open] .page-blog-zubet-latest-promotions-analysis__faq-question {
    border-bottom: none;
}

/* Conclusion Section */
.page-blog-zubet-latest-promotions-analysis__conclusion-section {
    padding: 80px 0;
    background-color: var(--zubet-background);
    text-align: center;
}

/* Buttons */
.page-blog-zubet-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-blog-zubet-latest-promotions-analysis__btn-primary,
.page-blog-zubet-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-zubet-latest-promotions-analysis__btn-primary {
    background: var(--zubet-button-gradient);
    color: var(--zubet-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-zubet-latest-promotions-analysis__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-zubet-latest-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: var(--zubet-primary-color);
    border: 2px solid var(--zubet-primary-color);
}

.page-blog-zubet-latest-promotions-analysis__btn-secondary:hover {
    background-color: var(--zubet-primary-color);
    color: var(--zubet-text-main);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-zubet-latest-promotions-analysis__hero-content {
        padding: 30px 15px;
    }
    .page-blog-zubet-latest-promotions-analysis__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-zubet-latest-promotions-analysis__description {
        font-size: 1.05rem;
    }
    .page-blog-zubet-latest-promotions-analysis__section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    .page-blog-zubet-latest-promotions-analysis__video-title {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    }
}

@media (max-width: 768px) {
    .page-blog-zubet-latest-promotions-analysis__container,
    .page-blog-zubet-latest-promotions-analysis__content-section .page-blog-zubet-latest-promotions-analysis__container,
    .page-blog-zubet-latest-promotions-analysis__promotions-grid .page-blog-zubet-latest-promotions-analysis__container,
    .page-blog-zubet-latest-promotions-analysis__cta-section .page-blog-zubet-latest-promotions-analysis__container,
    .page-blog-zubet-latest-promotions-analysis__faq-section .page-blog-zubet-latest-promotions-analysis__container,
    .page-blog-zubet-latest-promotions-analysis__conclusion-section .page-blog-zubet-latest-promotions-analysis__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images */
    .page-blog-zubet-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-zubet-latest-promotions-analysis__hero-image-wrapper {
        max-height: 400px;
    }

    .page-blog-zubet-latest-promotions-analysis__card-image {
        height: 180px;
    }

    /* Videos */
    .page-blog-zubet-latest-promotions-analysis video,
    .page-blog-zubet-latest-promotions-analysis__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-zubet-latest-promotions-analysis__video-section,
    .page-blog-zubet-latest-promotions-analysis__video-container,
    .page-blog-zubet-latest-promotions-analysis__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-zubet-latest-promotions-analysis__video-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    /* Buttons */
    .page-blog-zubet-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-zubet-latest-promotions-analysis__btn-primary,
    .page-blog-zubet-latest-promotions-analysis__btn-secondary,
    .page-blog-zubet-latest-promotions-analysis__btn-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-blog-zubet-latest-promotions-analysis__hero-section,
    .page-blog-zubet-latest-promotions-analysis__content-section,
    .page-blog-zubet-latest-promotions-analysis__promotions-grid,
    .page-blog-zubet-latest-promotions-analysis__cta-section,
    .page-blog-zubet-latest-promotions-analysis__faq-section,
    .page-blog-zubet-latest-promotions-analysis__conclusion-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-blog-zubet-latest-promotions-analysis__hero-content {
        padding: 20px 15px;
    }
    .page-blog-zubet-latest-promotions-analysis__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-zubet-latest-promotions-analysis__description {
        font-size: 1rem;
    }
    .page-blog-zubet-latest-promotions-analysis__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .page-blog-zubet-latest-promotions-analysis__list-item {
        padding: 25px;
    }
    .page-blog-zubet-latest-promotions-analysis__list-item::before {
        top: -10px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    .page-blog-zubet-latest-promotions-analysis__list-title {
        font-size: 1.2rem;
        margin-top: 10px;
    }
    .page-blog-zubet-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-zubet-latest-promotions-analysis__faq-answer {
        padding: 10px 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-blog-zubet-latest-promotions-analysis__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-blog-zubet-latest-promotions-analysis__description {
        font-size: 0.95rem;
    }
    .page-blog-zubet-latest-promotions-analysis__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
    .page-blog-zubet-latest-promotions-analysis__card-title {
        font-size: 1.3rem;
    }
    .page-blog-zubet-latest-promotions-analysis__btn-primary,
    .page-blog-zubet-latest-promotions-analysis__btn-secondary {
        font-size: 1rem;
        padding: 12px 25px;
    }
}