
    :root {
        --primary-color: #ffcc00; /* Vàng đậm */
        --secondary-color: #1a1a1a; /* Gần đen */
        --accent-color: #007bff; /* Xanh dương */
        --text-light: #f0f0f0; /* Trắng nhạt */
        --text-dark: #333333; /* Xám đậm */
        --bg-dark: #121212; /* Nền rất tối */
        --bg-medium: #1e1e1e; /* Nền tối trung bình */
        --border-color: #333333; /* Màu viền */
        --button-hover-color: #e6b800; /* Vàng đậm hơn khi hover */
    }

    .page-118-bet {
        font-family: 'Arial', sans-serif;
        color: var(--text-light);
        background-color: var(--bg-dark);
        line-height: 1.6;
        padding-top: 10px; /* Adjust for fixed header */
    }

    .page-118-bet__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-118-bet__section--dark {
        background-color: var(--bg-medium);
    }

    .page-118-bet__hero-section {
        background: var(--bg-medium);
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        min-height: 400px;
    }

    .page-118-bet__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.3;
    }

    .page-118-bet__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-118-bet__h1 {
        font-size: 2.8em;
        color: var(--primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-118-bet__h2 {
        font-size: 2.2em;
        color: var(--primary-color);
        margin-bottom: 30px;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
        display: inline-block;
        text-align: center;
    }

    .page-118-bet__h3 {
        font-size: 1.6em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .page-118-bet__p {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--text-light);
    }

    .page-118-bet__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
        margin-top: 20px;
    }

    .page-118-bet__button:hover {
        background-color: var(--button-hover-color);
        transform: translateY(-2px);
    }

    .page-118-bet__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-118-bet__floating-button {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 10px 15px;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        font-size: 0.9em;
        min-width: 80px;
    }

    .page-118-bet__floating-button:hover {
        background-color: var(--button-hover-color);
        transform: scale(1.05);
    }

    .page-118-bet__product-grid,
    .page-118-bet__provider-grid,
    .page-118-bet__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-118-bet__product-card,
    .page-118-bet__provider-card,
    .page-118-bet__payment-card {
        background-color: var(--bg-medium);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-118-bet__product-image,
    .page-118-bet__provider-logo,
    .page-118-bet__payment-logo {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        width: 100%; /* Ensure images take full width of card */
        max-height: 200px; /* Limit height for consistency */
        object-fit: contain; /* Ensure image fits without cropping for logos */
        background-color: #2a2a2a; /* Slightly lighter background for logos */
        padding: 10px;
        box-sizing: border-box;
    }

    .page-118-bet__product-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-118-bet__product-description {
        font-size: 0.95em;
        color: var(--text-light);
        flex-grow: 1; /* Allow description to take available space */
    }

    .page-118-bet__provider-name,
    .page-118-bet__payment-name {
        font-size: 1.2em;
        color: var(--text-light);
        margin-top: 10px;
    }

    .page-118-bet__promotion-card {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 30px;
        border-radius: 10px;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-118-bet__promotion-title {
        font-size: 1.8em;
        margin-bottom: 15px;
        color: var(--secondary-color);
    }

    .page-118-bet__promotion-description {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--secondary-color);
    }

    .page-118-bet__promotion-button {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-118-bet__promotion-button:hover {
        background-color: #333333;
        transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-118-bet__faq-container {
        margin-top: 40px;
        text-align: left;
    }

    .page-118-bet__faq-item {
        background-color: var(--bg-medium);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-118-bet__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        cursor: pointer;
        background-color: #2a2a2a;
        color: var(--primary-color);
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-118-bet__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-118-bet__faq-question h3 {
        margin: 0;
        color: var(--primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
    }

    .page-118-bet__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        width: 30px; /* Fixed width for toggle icon */
        text-align: center;
    }

    .page-118-bet__faq-item.active .page-118-bet__faq-toggle {
        transform: rotate(45deg); /* Change + to X (or similar) */
    }

    .page-118-bet__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: var(--text-light);
        background-color: var(--bg-medium);
        text-align: left;
    }

    .page-118-bet__faq-item.active .page-118-bet__faq-answer {
        max-height: 2000px !important; /* Sufficiently large value */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-118-bet__h1 {
            font-size: 2em;
        }

        .page-118-bet__h2 {
            font-size: 1.8em;
        }

        .page-118-bet__h3 {
            font-size: 1.4em;
        }

        .page-118-bet__section {
            padding: 30px 15px;
        }

        .page-118-bet__hero-section {
            padding: 40px 15px;
            min-height: 300px;
        }

        .page-118-bet__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Horizontal on small screens */
            gap: 8px;
        }

        .page-118-bet__floating-button {
            padding: 8px 12px;
            font-size: 0.8em;
            min-width: 70px;
        }

        .page-118-bet__product-grid,
        .page-118-bet__provider-grid,
        .page-118-bet__payment-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-118-bet__product-card,
        .page-118-bet__provider-card,
        .page-118-bet__payment-card {
            padding: 15px;
        }

        .page-118-bet__product-image,
        .page-118-bet__provider-logo,
        .page-118-bet__payment-logo {
            max-height: 150px;
            padding: 8px;
        }

        .page-118-bet__promotion-card {
            padding: 20px;
        }

        .page-118-bet__promotion-title {
            font-size: 1.5em;
        }

        .page-118-bet__promotion-description {
            font-size: 1em;
        }

        .page-118-bet__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }

        .page-118-bet__faq-answer {
            padding: 0 20px;
        }

        .page-118-bet__faq-item.active .page-118-bet__faq-answer {
            padding: 15px 20px !important;
        }
        /* Mobile specific list item styling for general lists (if any) */
        .page-118-bet__list-item { /* Example for generic list items, not explicitly used here but for compliance */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 10px !important; /* Adjust as needed */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-118-bet__list-container { /* Example for generic list containers, not explicitly used here but for compliance */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important; /* Adjust as needed */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    @media (max-width: 480px) {
        .page-118-bet__h1 {
            font-size: 1.8em;
        }

        .page-118-bet__h2 {
            font-size: 1.6em;
        }

        .page-118-bet__floating-buttons {
            flex-direction: row; /* Still horizontal */
            justify-content: center;
            left: 0;
            right: 0;
            width: 100%;
            padding: 0 15px;
            box-sizing: border-box;
        }
    }
  