
    :root {
        --primary-color: #e44d26; /* Cam đỏ */
        --secondary-color: #333; /* Xám đen */
        --accent-color: #f7b731; /* Vàng cam */
        --text-light: #f0f0f0;
        --text-dark: #333;
        --bg-dark: #1a1a1a;
        --bg-medium: #2a2a2a;
        --bg-light: #3a3a3a;
        --border-color: #444;
        --button-hover-bg: #c0392b;
    }

    .page-197-vip {
        font-family: 'Arial', sans-serif;
        color: var(--text-light);
        background-color: var(--bg-dark);
        line-height: 1.6;
        padding-bottom: 100px; /* Space for floating buttons */
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* General Section Styling */
    .page-197-vip__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: var(--bg-medium);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-197-vip__section-title {
        font-size: 2.2em;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
        font-weight: bold;
    }
    .page-197-vip__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    /* Hero Section */
    .page-197-vip__hero-section {
        position: relative;
        height: 60vh; /* Adjust for mobile view */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        background: linear-gradient(45deg, var(--bg-dark), var(--secondary-color));
        padding: 10px; /* Small decorative padding, body handles main offset */
    }
    .page-197-vip__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.4;
    }
    .page-197-vip__hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        max-width: 900px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }
    .page-197-vip__hero-title {
        font-size: 2.8em;
        color: var(--accent-color);
        margin-bottom: 15px;
        line-height: 1.2;
    }
    .page-197-vip__hero-subtitle {
        font-size: 1.2em;
        color: var(--text-light);
        margin-bottom: 30px;
    }
    .page-197-vip__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    .page-197-vip__hero-button {
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }
    .page-197-vip__hero-button:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-197-vip__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 40px);
        max-width: 400px;
        justify-content: center;
    }
    .page-197-vip__floating-button {
        flex: 1;
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 12px 0;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        text-align: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }
    .page-197-vip__floating-button--login {
        background-color: var(--accent-color);
    }
    .page-197-vip__floating-button:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-3px);
    }
    .page-197-vip__floating-button--login:hover {
        background-color: #d4a017; /* Darker accent */
    }

    /* Game Categories */
    .page-197-vip__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
        justify-content: center;
    }
    .page-197-vip__game-card {
        background-color: var(--bg-light);
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-197-vip__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }
    .page-197-vip__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        border-bottom: 2px solid var(--primary-color);
    }
    .page-197-vip__game-content {
        padding: 20px;
    }
    .page-197-vip__game-title {
        font-size: 1.4em;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: bold;
    }
    .page-197-vip__game-description {
        font-size: 0.95em;
        color: var(--text-light);
        margin-bottom: 15px;
    }
    .page-197-vip__game-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 8px 18px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .page-197-vip__game-button:hover {
        background-color: var(--button-hover-bg);
    }

    /* Promotions */
    .page-197-vip__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .page-197-vip__promo-card {
        background-color: var(--bg-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .page-197-vip__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }
    .page-197-vip__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }
    .page-197-vip__promo-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .page-197-vip__promo-title {
        font-size: 1.5em;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: bold;
    }
    .page-197-vip__promo-description {
        font-size: 0.95em;
        color: var(--text-light);
        margin-bottom: 15px;
        flex-grow: 1;
    }
    .page-197-vip__promo-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: background-color 0.3s ease;
        align-self: flex-start;
        border: none;
        cursor: pointer;
    }
    .page-197-vip__promo-button:hover {
        background-color: var(--button-hover-bg);
    }

    /* About Section */
    .page-197-vip__about-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .page-197-vip__about-text {
        font-size: 1.1em;
        color: var(--text-light);
        text-align: center;
        max-width: 800px;
    }
    .page-197-vip__about-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        margin-top: 20px;
    }

    /* Payment Methods & Game Providers */
    .page-197-vip__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
        margin-top: 30px;
        justify-items: center;
        align-items: center;
    }
    .page-197-vip__logo-item {
        background-color: var(--bg-light);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 100%;
        max-width: 150px;
        box-sizing: border-box;
    }
    .page-197-vip__logo-item:hover {
        transform: translateY(-3px);
    }
    .page-197-vip__logo-image {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
        display: block;
    }

    /* FAQ Section */
    .page-197-vip__faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }
    .page-197-vip__faq-item {
        background-color: var(--bg-light);
        border: 1px solid var(--border-color);
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .page-197-vip__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: var(--secondary-color);
        color: var(--text-light);
        font-weight: bold;
        font-size: 1.1em;
        border-bottom: 1px solid var(--border-color);
        transition: background-color 0.3s ease;
        user-select: none;
    }
    .page-197-vip__faq-question:hover {
        background-color: #444;
    }
    .page-197-vip__faq-question h3 {
        margin: 0;
        color: var(--accent-color);
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }
    .page-197-vip__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click event on parent div */
    }
    .page-197-vip__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        color: var(--text-light);
        background-color: var(--bg-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 0.95em;
    }
    .page-197-vip__faq-item.active .page-197-vip__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }
    .page-197-vip__faq-item.active .page-197-vip__faq-toggle {
        content: '−';
    }

    /* Call to Action Section */
    .page-197-vip__cta-section {
        text-align: center;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        padding: 50px 20px;
        border-radius: 8px;
        margin-top: 40px;
    }
    .page-197-vip__cta-title {
        font-size: 2.5em;
        color: var(--text-light);
        margin-bottom: 20px;
        font-weight: bold;
    }
    .page-197-vip__cta-description {
        font-size: 1.2em;
        color: var(--text-light);
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-197-vip__cta-button {
        background-color: var(--bg-dark);
        color: var(--accent-color);
        padding: 15px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: 2px solid var(--accent-color);
        cursor: pointer;
    }
    .page-197-vip__cta-button:hover {
        background-color: var(--bg-light);
        transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-197-vip__hero-title {
            font-size: 2.5em;
        }
        .page-197-vip__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-197-vip__hero-section {
            height: 70vh;
        }
        .page-197-vip__hero-title {
            font-size: 2em;
        }
        .page-197-vip__hero-subtitle {
            font-size: 1em;
        }
        .page-197-vip__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-197-vip__hero-button {
            width: 100%;
            max-width: 250px;
        }
        .page-197-vip__section {
            padding: 30px 15px;
        }
        .page-197-vip__section-title {
            font-size: 1.8em;
        }
        .page-197-vip__game-grid,
        .page-197-vip__promo-grid {
            grid-template-columns: 1fr;
        }
        .page-197-vip__game-image,
        .page-197-vip__promo-image {
            height: 180px;
        }
        .page-197-vip__logo-grid {
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 15px;
        }
        .page-197-vip__logo-item {
            padding: 10px;
            height: 80px;
            max-width: 120px;
            box-sizing: border-box !important;
            width: 100% !important;
        }
        .page-197-vip__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-197-vip__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }
        .page-197-vip__faq-answer {
            font-size: 0.9em;
            padding: 0 15px;
        }
        .page-197-vip__faq-item.active .page-197-vip__faq-answer {
            padding: 15px 15px !important;
        }
        .page-197-vip__cta-title {
            font-size: 2em;
        }
        .page-197-vip__cta-description {
            font-size: 1em;
        }
        .page-197-vip__cta-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-197-vip__about-text {
            font-size: 1em;
        }
        .page-197-vip__floating-buttons {
            width: calc(100% - 30px); /* Adjust for smaller padding */
            bottom: 15px;
            gap: 10px;
        }
        .page-197-vip__floating-button {
            padding: 10px 0;
            font-size: 1em;
        }
        /* Ensure all list-like items (game-card, promo-card, logo-item) are full width */
        .page-197-vip__game-card,
        .page-197-vip__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-197-vip__game-grid,
        .page-197-vip__promo-grid,
        .page-197-vip__logo-grid {
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-197-vip__game-card,
        .page-197-vip__promo-card,
        .page-197-vip__logo-item {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-197-vip__game-image,
        .page-197-vip__promo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-197-vip__hero-title {
            font-size: 1.8em;
        }
        .page-197-vip__hero-subtitle {
            font-size: 0.9em;
        }
        .page-197-vip__section-title {
            font-size: 1.6em;
        }
        .page-197-vip__cta-title {
            font-size: 1.8em;
        }
        .page-197-vip__floating-buttons {
            bottom: 10px;
        }
    }
  