/* style/blog-w9bet-casino-game-guide.css */

/* Custom Colors */
:root {
    --w9bet-bg-primary: #08160F; /* Background */
    --w9bet-card-bg: #11271B; /* Card BG */
    --w9bet-text-main: #F2FFF6; /* Text Main */
    --w9bet-text-secondary: #A7D9B8; /* Text Secondary */
    --w9bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --w9bet-border: #2E7A4E; /* Border */
    --w9bet-glow: #57E38D; /* Glow */
    --w9bet-gold: #F2C14E; /* Gold */
    --w9bet-divider: #1E3A2A; /* Divider */
    --w9bet-deep-green: #0A4B2C; /* Deep Green */
    --w9bet-primary-color: #11A84E; /* Main color */
    --w9bet-secondary-color: #22C768; /* Aux color */
}

/* Base styles for the page content, ensuring light text on dark background */
.page-blog-w9bet-casino-game-guide {
    background-color: var(--w9bet-bg-primary);
    color: var(--w9bet-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

/* Container for content sections */
.page-blog-w9bet-casino-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-w9bet-casino-game-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    padding-bottom: 60px; /* Space below content */
    background-color: var(--w9bet-deep-green); /* Darker background for hero */
    overflow: hidden; /* Prevent content overflow */
}

.page-blog-w9bet-casino-game-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 40px; /* Space between image and text content */
}

.page-blog-w9bet-casino-game-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no CSS filter */
}

.page-blog-w9bet-casino-game-guide__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--w9bet-text-main); /* Light text on dark background */
}

.page-blog-w9bet-casino-game-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: var(--w9bet-gold); /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-w9bet-casino-game-guide__description {
    font-size: 1.1rem;
    color: var(--w9bet-text-secondary);
    margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-w9bet-casino-game-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width for flex-wrap */
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-w9bet-casino-game-guide__btn-primary,
.page-blog-w9bet-casino-game-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-blog-w9bet-casino-game-guide__btn-primary {
    background: var(--w9bet-button-gradient);
    color: #ffffff; /* White text on dark gradient */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-w9bet-casino-game-guide__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--w9bet-glow);
}

.page-blog-w9bet-casino-game-guide__btn-secondary {
    background-color: transparent;
    color: var(--w9bet-gold); /* Gold text */
    border: 2px solid var(--w9bet-gold); /* Gold border */
}

.page-blog-w9bet-casino-game-guide__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1); /* Light gold hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.page-blog-w9bet-casino-game-guide__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--w9bet-gold);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    line-height: 1.3;
}

/* Intro Section */
.page-blog-w9bet-casino-game-guide__intro-section,
.page-blog-w9bet-casino-game-guide__game-guides-section,
.page-blog-w9bet-casino-game-guide__slots-section,
.page-blog-w9bet-casino-game-guide__sports-betting-section,
.page-blog-w9bet-casino-game-guide__cta-section,
.page-blog-w9bet-casino-game-guide__faq-section,
.page-blog-w9bet-casino-game-guide__conclusion-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--w9bet-divider);
}

.page-blog-w9bet-casino-game-guide__intro-section p,
.page-blog-w9bet-casino-game-guide__game-guides-section p,
.page-blog-w9bet-casino-game-guide__slots-section p,
.page-blog-w9bet-casino-game-guide__sports-betting-section p,
.page-blog-w9bet-casino-game-guide__conclusion-section p {
    font-size: 1rem;
    color: var(--w9bet-text-secondary);
    margin-bottom: 15px;
    text-align: justify;
}

.page-blog-w9bet-casino-game-guide__image-full {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: none; /* No CSS filter */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Game Guide Cards */
.page-blog-w9bet-casino-game-guide__guide-card {
    background-color: var(--w9bet-card-bg);
    border: 1px solid var(--w9bet-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--w9bet-text-main); /* Light text on dark card background */
}

.page-blog-w9bet-casino-game-guide__card-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--w9bet-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-w9bet-casino-game-guide__card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* No CSS filter */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* FAQ Section */
.page-blog-w9bet-casino-game-guide__faq-list {
    margin-top: 30px;
}

.page-blog-w9bet-casino-game-guide__faq-item {
    background-color: var(--w9bet-card-bg);
    border: 1px solid var(--w9bet-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--w9bet-text-main);
}

.page-blog-w9bet-casino-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--w9bet-gold);
    background-color: var(--w9bet-deep-green);
    border-bottom: 1px solid var(--w9bet-border);
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-blog-w9bet-casino-game-guide__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-w9bet-casino-game-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--w9bet-gold);
}

.page-blog-w9bet-casino-game-guide__faq-item[open] .page-blog-w9bet-casino-game-guide__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-blog-w9bet-casino-game-guide__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--w9bet-text-secondary);
    background-color: var(--w9bet-card-bg);
    border-top: none;
    text-align: justify;
}

/* Conclusion Section */
.page-blog-w9bet-casino-game-guide__conclusion-section {
    padding-bottom: 80px;
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-w9bet-casino-game-guide__hero-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-blog-w9bet-casino-game-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-w9bet-casino-game-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-w9bet-casino-game-guide__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-blog-w9bet-casino-game-guide__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-w9bet-casino-game-guide__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-w9bet-casino-game-guide__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-w9bet-casino-game-guide__btn-primary,
    .page-blog-w9bet-casino-game-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 auto; /* Center buttons when stacked */
    }

    .page-blog-w9bet-casino-game-guide__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 30px;
        margin-top: 40px;
    }

    .page-blog-w9bet-casino-game-guide__intro-section,
    .page-blog-w9bet-casino-game-guide__game-guides-section,
    .page-blog-w9bet-casino-game-guide__slots-section,
    .page-blog-w9bet-casino-game-guide__sports-betting-section,
    .page-blog-w9bet-casino-game-guide__cta-section,
    .page-blog-w9bet-casino-game-guide__faq-section,
    .page-blog-w9bet-casino-game-guide__conclusion-section {
        padding: 20px 0;
    }

    .page-blog-w9bet-casino-game-guide__container {
        padding: 0 15px; /* Add horizontal padding for mobile content */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-blog-w9bet-casino-game-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px; /* Ensure minimum size even on mobile */
        min-height: 200px; /* Ensure minimum size even on mobile */
    }

    .page-blog-w9bet-casino-game-guide__card {
        padding: 20px;
        border-radius: 8px;
    }

    .page-blog-w9bet-casino-game-guide__card-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: 15px;
    }

    .page-blog-w9bet-casino-game-guide__faq-question {
        padding: 15px;
        font-size: 1rem;
    }

    .page-blog-w9bet-casino-game-guide__faq-answer {
        padding: 15px;
        font-size: 0.95rem;
    }
}