
    /* Reset & Base Styles for page-v9bet scope */
    .page-v9bet {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f5f7fa;
        padding-bottom: 80px; /* Space for floating button */
    }

    .page-v9bet a {
        color: #007bff;
        text-decoration: none;
    }

    .page-v9bet a:hover {
        text-decoration: underline;
    }

    .page-v9bet__section-title {
        font-size: 2.2em;
        color: #1a237e;
        text-align: center;
        margin-bottom: 20px;
        padding: 20px 15px 10px;
        line-height: 1.3;
    }

    .page-v9bet__section-subtitle {
        font-size: 1.1em;
        color: #555;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    /* Hero Section */
    .page-v9bet__hero-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding-top: 10px; /* For fixed header on mobile */
        background-color: #1a237e;
    }

    .page-v9bet__hero-banner {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-v9bet__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        object-fit: cover;
        margin: 0 auto;
    }

    .page-v9bet__hero-content {
        position: static; /* Adjust for text below banner */
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 15px;
        color: #fff;
        text-align: center;
        background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
        margin-top: -10px; /* Overlap slightly for visual continuity */
    }

    .page-v9bet__hero-title {
        font-size: 1.8em;
        margin-bottom: 10px;
        line-height: 1.2;
        color: #fff;
    }

    .page-v9bet__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
        color: #e0e0e0;
    }
    .page-v9bet__hero-description a {
        color: #ffeb3b;
        font-weight: bold;
    }

    .page-v9bet__hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-v9bet__hero-button {
        display: block;
        padding: 12px 25px;
        background-color: #ffc107;
        color: #1a237e;
        border-radius: 30px;
        font-weight: bold;
        text-transform: uppercase;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        font-size: 1em;
    }

    .page-v9bet__hero-button:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .page-v9bet__hero-button--secondary {
        background-color: #007bff;
        color: #fff;
    }

    .page-v9bet__hero-button--secondary:hover {
        background-color: #0056b3;
    }

    /* Floating Promo Button */
    .page-v9bet__floating-promo {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #ff0000;
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
        text-align: center;
        animation: pulse 2s infinite;
    }

    .page-v9bet__floating-button {
        display: inline-block;
        background-color: #ffeb3b;
        color: #c62828;
        padding: 12px 20px;
        border-radius: 25px;
        font-weight: bold;
        font-size: 1.1em;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .page-v9bet__floating-button:hover {
        transform: translateY(-3px) scale(1.02);
        background-color: #ffe000;
        text-decoration: none;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.02); }
        100% { transform: scale(1); }
    }

    /* General Content Sections */
    .page-v9bet__about-section,
    .page-v9bet__games-section,
    .page-v9bet__promo-section,
    .page-v9bet__guide-section,
    .page-v9bet__faq-section,
    .page-v9bet__cta-section {
        padding: 40px 15px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 25px;
    }
    /* First section padding adjustment if no hero */
    .page-v9bet__about-section:first-of-type {
        padding-top: 50px; /* Adjust for fixed header */
    }


    .page-v9bet__about-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: justify;
    }

    .page-v9bet__about-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 15px 0;
        object-fit: cover;
    }

    .page-v9bet__game-grid,
    .page-v9bet__guide-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .page-v9bet__game-item,
    .page-v9bet__guide-item {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-v9bet__game-item:hover,
    .page-v9bet__guide-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .page-v9bet__game-image,
    .page-v9bet__guide-image {
        width: 100%;
        max-width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .page-v9bet__game-title,
    .page-v9bet__guide-title {
        font-size: 1.4em;
        color: #1a237e;
        margin-bottom: 10px;
    }

    .page-v9bet__game-description,
    .page-v9bet__guide-item p {
        font-size: 0.95em;
        color: #666;
        margin-bottom: 15px;
    }

    .page-v9bet__guide-link {
        display: inline-block;
        padding: 8px 15px;
        background-color: #007bff;
        color: #fff;
        border-radius: 20px;
        font-size: 0.9em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-v9bet__guide-link:hover {
        background-color: #0056b3;
        text-decoration: none;
    }

    /* Promo Section */
    .page-v9bet__promo-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .page-v9bet__promo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    .page-v9bet__promo-details {
        text-align: justify;
    }

    .page-v9bet__promo-details ul {
        list-style: none;
        padding: 0;
        margin-top: 15px;
    }

    .page-v9bet__promo-details ul li {
        background-color: #e3f2fd;
        margin-bottom: 10px;
        padding: 10px 15px;
        border-left: 4px solid #2196f3;
        border-radius: 4px;
        font-size: 0.95em;
        color: #333;
    }

    .page-v9bet__promo-button {
        display: block;
        width: fit-content;
        margin: 25px auto 0;
        padding: 12px 30px;
        background-color: #ff0000;
        color: #fff;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.1em;
        text-transform: uppercase;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-v9bet__promo-button:hover {
        background-color: #cc0000;
        transform: translateY(-2px);
        text-decoration: none;
    }

    /* FAQ Section */
    .page-v9bet__faq-container {
        margin-top: 20px;
    }

    .page-v9bet__faq-item {
        background-color: #e8f5e9;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-v9bet__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #4caf50;
        color: #fff;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-v9bet__faq-question:hover {
        background-color: #388e3c;
    }

    .page-v9bet__faq-q-title {
        font-size: 1.1em;
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent click on h3 from blocking parent */
        color: #fff; /* Ensure text color is white for contrast */
    }

    .page-v9bet__faq-toggle {
        font-size: 1.5em;
        margin-left: 10px;
        pointer-events: none; /* Prevent click on toggle from blocking parent */
        transition: transform 0.3s ease;
    }

    .page-v9bet__faq-item.active .page-v9bet__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-v9bet__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #f9fbe7;
        color: #333; /* Ensure text color is dark for contrast */
    }

    .page-v9bet__faq-item.active .page-v9bet__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important;
        opacity: 1;
    }
    .page-v9bet__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
    }
    .page-v9bet__faq-answer p:last-child {
        padding-bottom: 0;
    }
    .page-v9bet__faq-answer a {
        color: #1a237e;
        font-weight: bold;
    }
    .page-v9bet__faq-answer .keyword {
        font-weight: bold;
        color: #c62828;
    }


    /* CTA Section */
    .page-v9bet__cta-section {
        text-align: center;
        background-color: #1a237e;
        color: #fff;
        padding: 50px 15px;
        border-radius: 10px;
        margin-top: 25px;
    }

    .page-v9bet__cta-section .page-v9bet__section-title {
        color: #fff;
        padding-top: 0;
    }

    .page-v9bet__cta-section .page-v9bet__section-subtitle {
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    .page-v9bet__cta-button {
        display: inline-block;
        padding: 15px 35px;
        background-color: #ffc107;
        color: #1a237e;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.2em;
        text-transform: uppercase;
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-v9bet__cta-button:hover {
        background-color: #e0a800;
        transform: translateY(-3px);
        text-decoration: none;
    }

    /* Keyword highlighting */
    .page-v9bet .keyword {
        font-weight: bold;
        color: #d32f2f; /* A strong, contrasting color for keywords */
    }

    /* Responsive Design */
    @media (min-width: 768px) {
        .page-v9bet__hero-section {
            padding-top: 10px; /* For fixed header on desktop */
        }
        .page-v9bet__hero-title {
            font-size: 2.8em;
        }
        .page-v9bet__hero-description {
            font-size: 1.2em;
        }
        .page-v9bet__hero-actions {
            flex-direction: row;
            max-width: 500px;
        }
        .page-v9bet__section-title {
            font-size: 2.8em;
            padding-top: 30px;
        }
        .page-v9bet__section-subtitle {
            font-size: 1.2em;
        }
        .page-v9bet__about-content {
            flex-direction: row;
            align-items: flex-start;
            text-align: left;
        }
        .page-v9bet__about-content p {
            flex: 1;
            padding-right: 20px;
        }
        .page-v9bet__about-image {
            flex: 0 0 40%;
            max-width: 40%;
            margin: 0;
        }
        .page-v9bet__game-grid,
        .page-v9bet__guide-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        .page-v9bet__promo-content {
            flex-direction: row;
            text-align: left;
        }
        .page-v9bet__promo-image {
            flex: 0 0 40%;
            max-width: 40%;
        }
        .page-v9bet__promo-details {
            flex: 1;
            padding-left: 25px;
        }
        .page-v9bet__promo-button {
            margin-left: 0;
        }
        .page-v9bet__faq-q-title {
            font-size: 1.2em;
        }
        .page-v9bet__faq-answer {
            padding: 0 25px;
        }
        .page-v9bet__faq-item.active .page-v9bet__faq-answer {
            padding: 25px !important;
        }
    }

    /* IMPORTANT: Mobile image responsive optimization */
    @media (max-width: 768px) {
        .page-v9bet img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-v9bet__hero-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-v9bet__about-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-v9bet__game-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-v9bet__guide-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-v9bet__promo-image {
            max-width: 100% !important;
            height: auto !important;
        }
        /* Image containers */
        .page-v9bet__hero-banner,
        .page-v9bet__about-content,
        .page-v9bet__game-grid,
        .page-v9bet__guide-grid,
        .page-v9bet__promo-content {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  