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

.page-blog-v8bet-official-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for main content */
    background-color: var(--background); /* Overall page background */
}

/* Color contrast enforcement based on background */
/* body background is var(--background-color) which is #08160F (Deep Green) - dark, so text should be light */
.page-blog-v8bet-official-latest-promotions-analysis {
    color: var(--text-main); /* #F2FFF6 */
}

.page-blog-v8bet-official-latest-promotions-analysis__light-bg {
    background-color: #ffffff; /* White background for contrast */
    color: #333333; /* Dark text for contrast */
}

.page-blog-v8bet-official-latest-promotions-analysis__dark-bg {
    background-color: var(--background); /* #08160F */
    color: var(--text-main); /* #F2FFF6 */
}

.page-blog-v8bet-official-latest-promotions-analysis__card {
    background-color: var(--card-bg); /* #11271B */
    color: var(--text-main); /* #F2FFF6 */
    border: 1px solid var(--border); /* #2E7A4E */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-v8bet-official-latest-promotions-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-blog-v8bet-official-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    background-color: var(--background); /* Deep Green */
    padding-top: 10px; /* Small top padding for video/hero section */
}

.page-blog-v8bet-official-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
}

.page-blog-v8bet-official-latest-promotions-analysis__hero-content {
    position: relative; /* Not absolute, to be below the image */
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-main); /* #F2FFF6 */
}

.page-blog-v8bet-official-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--gold); /* Gold for emphasis */
    line-height: 1.2;
}

.page-blog-v8bet-official-latest-promotions-analysis__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary); /* A7D9B8 */
}

.page-blog-v8bet-official-latest-promotions-analysis__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: var(--button-gradient); /* Button gradient */
    color: #ffffff; /* White text for buttons */
    border: none;
}

.page-blog-v8bet-official-latest-promotions-analysis__cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* General Section Styling */
.page-blog-v8bet-official-latest-promotions-analysis__section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-v8bet-official-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-v8bet-official-latest-promotions-analysis__section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--gold); /* Gold for section titles */
}

.page-blog-v8bet-official-latest-promotions-analysis__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-main);
}

/* Card Grid Section */
.page-blog-v8bet-official-latest-promotions-analysis__card-section .page-blog-v8bet-official-latest-promotions-analysis__section-title {
    color: var(--text-main); /* Main text for title on dark background */
}
.page-blog-v8bet-official-latest-promotions-analysis__card-section .page-blog-v8bet-official-latest-promotions-analysis__description {
    color: var(--text-secondary); /* Secondary text on dark background */
}

.page-blog-v8bet-official-latest-promotions-analysis__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-v8bet-official-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
}

.page-blog-v8bet-official-latest-promotions-analysis__card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold); /* Gold for card titles */
}

.page-blog-v8bet-official-latest-promotions-analysis__card-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-secondary);
}

.page-blog-v8bet-official-latest-promotions-analysis__card-button {
    width: 100%;
}

/* Step-by-Step Section */
.page-blog-v8bet-official-latest-promotions-analysis__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-blog-v8bet-official-latest-promotions-analysis__step-item {
    background-color: var(--card-bg); /* #11271B */
    color: var(--text-main); /* #F2FFF6 */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border); /* #2E7A4E */
}

.page-blog-v8bet-official-latest-promotions-analysis__step-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold); /* Gold for step titles */
}

.page-blog-v8bet-official-latest-promotions-analysis__step-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-blog-v8bet-official-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #ffffff; /* White background */
    color: var(--main-color); /* #11A84E */
    border: 2px solid var(--main-color); /* #11A84E */
}

.page-blog-v8bet-official-latest-promotions-analysis__btn-secondary:hover {
    background-color: var(--main-color); /* #11A84E */
    color: #ffffff; /* White text */
}

/* List Styling (Terms & Benefits) */
.page-blog-v8bet-official-latest-promotions-analysis__list,
.page-blog-v8bet-official-latest-promotions-analysis__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-blog-v8bet-official-latest-promotions-analysis__list-item,
.page-blog-v8bet-official-latest-promotions-analysis__benefit-item {
    background-color: var(--card-bg); /* #11271B */
    color: var(--text-main); /* #F2FFF6 */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border); /* #2E7A4E */
}

.page-blog-v8bet-official-latest-promotions-analysis__list-title,
.page-blog-v8bet-official-latest-promotions-analysis__benefit-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold); /* Gold for list titles */
}

.page-blog-v8bet-official-latest-promotions-analysis__list-text,
.page-blog-v8bet-official-latest-promotions-analysis__benefit-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.page-blog-v8bet-official-latest-promotions-analysis__faq-section {
    padding-bottom: 60px;
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-item {
    background-color: var(--card-bg); /* #11271B */
    border: 1px solid var(--border); /* #2E7A4E */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--deep-green); /* Darker green for question */
    color: var(--text-main); /* #F2FFF6 */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-question:hover {
    background-color: var(--divider); /* Slightly lighter on hover */
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
    color: var(--text-main); /* #F2FFF6 */
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    margin-left: 20px;
    color: var(--gold); /* Gold for toggle icon */
}

.page-blog-v8bet-official-latest-promotions-analysis__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    text-align: justify;
}

/* Conclusion Section */
.page-blog-v8bet-official-latest-promotions-analysis__conclusion-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.page-blog-v8bet-official-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* General text colors based on color scheme */
.page-blog-v8bet-official-latest-promotions-analysis__text-main {
    color: var(--text-main); /* #F2FFF6 */
}

.page-blog-v8bet-official-latest-promotions-analysis__text-secondary {
    color: var(--text-secondary); /* #A7D9B8 */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-v8bet-official-latest-promotions-analysis__main-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
    .page-blog-v8bet-official-latest-promotions-analysis__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-blog-v8bet-official-latest-promotions-analysis__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-blog-v8bet-official-latest-promotions-analysis__container {
        padding: 0 15px !important;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__hero-image {
        max-height: 350px;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__hero-content {
        padding: 30px 15px;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__main-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    .page-blog-v8bet-official-latest-promotions-analysis__description {
        font-size: 1rem;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__section-title {
        font-size: 1.8rem;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__text-block,
    .page-blog-v8bet-official-latest-promotions-analysis__card-text,
    .page-blog-v8bet-official-latest-promotions-analysis__step-text,
    .page-blog-v8bet-official-latest-promotions-analysis__list-text,
    .page-blog-v8bet-official-latest-promotions-analysis__benefit-text,
    .page-blog-v8bet-official-latest-promotions-analysis__faq-answer p {
        font-size: 16px !important; /* Ensure minimum font size for readability */
        line-height: 1.6 !important;
    }

    /* Images responsive */
    .page-blog-v8bet-official-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__section,
    .page-blog-v8bet-official-latest-promotions-analysis__card,
    .page-blog-v8bet-official-latest-promotions-analysis__container,
    .page-blog-v8bet-official-latest-promotions-analysis__step-item,
    .page-blog-v8bet-official-latest-promotions-analysis__list-item,
    .page-blog-v8bet-official-latest-promotions-analysis__benefit-item,
    .page-blog-v8bet-official-latest-promotions-analysis__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__card-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-v8bet-official-latest-promotions-analysis__cta-button,
    .page-blog-v8bet-official-latest-promotions-analysis__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}