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

.page-blog-choosing-best-slot-games-at-tv88 {
    background-color: var(--background-color); /* Body background is dark */
    color: var(--text-main-color); /* Use light text on dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-choosing-best-slot-games-at-tv88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-choosing-best-slot-games-at-tv88__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--deep-green-color);
    overflow: hidden;
}

.page-blog-choosing-best-slot-games-at-tv88__hero-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-choosing-best-slot-games-at-tv88__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-choosing-best-slot-games-at-tv88__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    margin-top: -80px; /* Overlap slightly for visual effect, but not on image */
    border: 1px solid var(--border-color);
}

.page-blog-choosing-best-slot-games-at-tv88__main-title {
    color: var(--gold-color);
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* H1 font size with clamp */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-blog-choosing-best-slot-games-at-tv88__description {
    color: var(--text-secondary-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Content Area */
.page-blog-choosing-best-slot-games-at-tv88__content-area {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-blog-choosing-best-slot-games-at-tv88__section-title {
    color: var(--gold-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-choosing-best-slot-games-at-tv88__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-blog-choosing-best-slot-games-at-tv88__subsection-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-choosing-best-slot-games-at-tv88 p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-secondary-color);
}

.page-blog-choosing-best-slot-games-at-tv88 ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary-color);
}

.page-blog-choosing-best-slot-games-at-tv88 ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-blog-choosing-best-slot-games-at-tv88__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

/* Buttons */
.page-blog-choosing-best-slot-games-at-tv88__btn-primary,
.page-blog-choosing-best-slot-games-at-tv88__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.page-blog-choosing-best-slot-games-at-tv88__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-choosing-best-slot-games-at-tv88__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.page-blog-choosing-best-slot-games-at-tv88__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-choosing-best-slot-games-at-tv88__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main-color);
    transform: translateY(-2px);
}

.page-blog-choosing-best-slot-games-at-tv88__button-spacing {
    margin-top: 30px;
}

.page-blog-choosing-best-slot-games-at-tv88__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-blog-choosing-best-slot-games-at-tv88__faq-section {
    background-color: var(--card-bg);
    padding: 60px 0;
    color: var(--text-main-color);
    border-top: 1px solid var(--divider-color);
}

.page-blog-choosing-best-slot-games-at-tv88__faq-list {
    margin-top: 30px;
}

.page-blog-choosing-best-slot-games-at-tv88__faq-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-choosing-best-slot-games-at-tv88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main-color);
    cursor: pointer;
    background-color: var(--deep-green-color);
    user-select: none;
    position: relative;
}

.page-blog-choosing-best-slot-games-at-tv88__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-choosing-best-slot-games-at-tv88__faq-question::marker {
    display: none;
}

.page-blog-choosing-best-slot-games-at-tv88__faq-qtext {
    flex-grow: 1;
}

.page-blog-choosing-best-slot-games-at-tv88__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-choosing-best-slot-games-at-tv88__faq-item[open] .page-blog-choosing-best-slot-games-at-tv88__faq-question {
    background-color: var(--primary-color);
}

.page-blog-choosing-best-slot-games-at-tv88__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary-color);
    background-color: var(--background-color);
    border-top: 1px solid var(--divider-color);
}

/* CTA Section */
.page-blog-choosing-best-slot-games-at-tv88__cta-section {
    background-color: var(--deep-green-color);
    padding: 60px 0;
    text-align: center;
}

.page-blog-choosing-best-slot-games-at-tv88__cta-container {
    max-width: 900px;
}

.page-blog-choosing-best-slot-games-at-tv88__cta-section .page-blog-choosing-best-slot-games-at-tv88__section-title {
    color: var(--gold-color);
}

.page-blog-choosing-best-slot-games-at-tv88__cta-section .page-blog-choosing-best-slot-games-at-tv88__description {
    color: var(--text-main-color);
    font-size: 1.15rem;
}

.page-blog-choosing-best-slot-games-at-tv88__link {
    color: var(--gold-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-choosing-best-slot-games-at-tv88__link:hover {
    color: var(--glow-color);
}

/* Image and Video Responsive */
.page-blog-choosing-best-slot-games-at-tv88 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-blog-choosing-best-slot-games-at-tv88 video,
.page-blog-choosing-best-slot-games-at-tv88__video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.page-blog-choosing-best-slot-games-at-tv88__video-section,
.page-blog-choosing-best-slot-games-at-tv88__video-container,
.page-blog-choosing-best-slot-games-at-tv88__video-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-blog-choosing-best-slot-games-at-tv88 {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-choosing-best-slot-games-at-tv88__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-blog-choosing-best-slot-games-at-tv88__hero-content {
        margin-top: -60px;
        padding: 15px;
    }

    .page-blog-choosing-best-slot-games-at-tv88__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-blog-choosing-best-slot-games-at-tv88__description {
        font-size: 1rem;
    }

    .page-blog-choosing-best-slot-games-at-tv88__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-choosing-best-slot-games-at-tv88__subsection-title {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .page-blog-choosing-best-slot-games-at-tv88 p,
    .page-blog-choosing-best-slot-games-at-tv88 ul li,
    .page-blog-choosing-best-slot-games-at-tv88__faq-question,
    .page-blog-choosing-best-slot-games-at-tv88__faq-answer {
        font-size: 0.95rem;
    }

    /* Images, Videos, Buttons and their containers must be responsive */
    .page-blog-choosing-best-slot-games-at-tv88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-choosing-best-slot-games-at-tv88 video,
    .page-blog-choosing-best-slot-games-at-tv88__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-choosing-best-slot-games-at-tv88__section,
    .page-blog-choosing-best-slot-games-at-tv88__card,
    .page-blog-choosing-best-slot-games-at-tv88__container,
    .page-blog-choosing-best-slot-games-at-tv88__hero-image-wrapper,
    .page-blog-choosing-best-slot-games-at-tv88__video-section,
    .page-blog-choosing-best-slot-games-at-tv88__video-container,
    .page-blog-choosing-best-slot-games-at-tv88__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-choosing-best-slot-games-at-tv88__btn-primary,
    .page-blog-choosing-best-slot-games-at-tv88__btn-secondary,
    .page-blog-choosing-best-slot-games-at-tv88 a[class*="button"],
    .page-blog-choosing-best-slot-games-at-tv88 a[class*="btn"] {
        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;
    }

    .page-blog-choosing-best-slot-games-at-tv88__cta-buttons,
    .page-blog-choosing-best-slot-games-at-tv88__button-group,
    .page-blog-choosing-best-slot-games-at-tv88__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }
}