
    .page-14bet-vnd {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Minimal padding-top for hero section, assuming body handles header offset */
    .page-14bet-vnd__hero-section {
        position: relative;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 10px; /* Minimal top padding */
        padding-bottom: 50px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-14bet-vnd__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .page-14bet-vnd__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5); /* Darken image for text readability, not changing color */
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-14bet-vnd__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        margin: 0 15px;
        box-sizing: border-box;
    }

    .page-14bet-vnd__brand-title {
        font-size: 3.5em;
        color: #ffd700; /* Gold accent */
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-14bet-vnd__hero-tagline {
        font-size: 1.5em;
        color: #fff;
        margin-bottom: 20px;
    }

    .page-14bet-vnd__promo-banner {
        background-color: #333;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .page-14bet-vnd__promo-image-inside {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
        object-fit: cover;
        box-sizing: border-box !important;
    }

    .page-14bet-vnd__promo-text {
        font-size: 1.1em;
        color: #eee;
        margin-bottom: 15px;
    }

    .page-14bet-vnd__promo-link {
        display: inline-block;
        background-color: #32cd32; /* Green accent */
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-14bet-vnd__promo-link:hover {
        background-color: #28a745;
    }

    /* Floating Register/Login Buttons */
    .page-14bet-vnd__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-14bet-vnd__register-btn,
    .page-14bet-vnd__login-btn {
        background-color: #e44d26; /* Orange/red accent */
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 25px;
        font-size: 1.1em;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px;
        text-align: center;
    }

    .page-14bet-vnd__login-btn {
        background-color: #007bff; /* Blue accent */
    }

    .page-14bet-vnd__register-btn:hover,
    .page-14bet-vnd__login-btn:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

    /* General Section Styling */
    .page-14bet-vnd__about-section,
    .page-14bet-vnd__games-section,
    .page-14bet-vnd__promotions-section,
    .page-14bet-vnd__partners-section,
    .page-14bet-vnd__payment-section,
    .page-14bet-vnd__faq-section,
    .page-14bet-vnd__contact-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box;
    }

    .page-14bet-vnd__section-title {
        font-size: 2.5em;
        color: #ffd700;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-14bet-vnd__section-description {
        font-size: 1.1em;
        color: #ccc;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-14bet-vnd__about-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        margin-top: 30px;
        box-sizing: border-box !important;
    }

    /* Game Categories */
    .page-14bet-vnd__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-14bet-vnd__game-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-14bet-vnd__game-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-14bet-vnd__game-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        object-fit: cover;
        box-sizing: border-box !important;
    }

    .page-14bet-vnd__game-title {
        font-size: 1.6em;
        color: #ffd700;
        margin-bottom: 10px;
    }

    .page-14bet-vnd__game-description {
        font-size: 0.95em;
        color: #bbb;
        line-height: 1.5;
    }

    /* Promotions Section */
    .page-14bet-vnd__promotion-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-14bet-vnd__promotion-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-14bet-vnd__promotion-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-14bet-vnd__promotion-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        object-fit: cover;
        box-sizing: border-box !important;
    }

    .page-14bet-vnd__promotion-title {
        font-size: 1.5em;
        color: #32cd32;
        margin-bottom: 10px;
    }

    .page-14bet-vnd__promotion-description {
        font-size: 0.95em;
        color: #bbb;
        line-height: 1.5;
    }

    .page-14bet-vnd__more-promos {
        margin-top: 30px;
        font-size: 1.1em;
        color: #ffd700;
    }

    /* Partners & Payments */
    .page-14bet-vnd__partner-logos,
    .page-14bet-vnd__payment-methods {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-14bet-vnd__partner-link,
    .page-14bet-vnd__payment-link {
        display: inline-block;
        background-color: #333;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-14bet-vnd__partner-link:hover,
    .page-14bet-vnd__payment-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-14bet-vnd__partner-logo,
    .page-14bet-vnd__payment-logo {
        max-width: 120px; /* Adjust size for logos */
        height: auto;
        display: block;
        box-sizing: border-box !important;
    }

    /* FAQ Section */
    .page-14bet-vnd__faq-container {
        text-align: left;
        max-width: 800px;
        margin: 40px auto 0 auto;
    }

    .page-14bet-vnd__faq-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .page-14bet-vnd__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #333;
        border-bottom: 1px solid #444;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-14bet-vnd__faq-question:hover {
        background-color: #444;
    }

    .page-14bet-vnd__faq-heading {
        font-size: 1.2em;
        color: #ffd700;
        margin: 0;
        pointer-events: none; /* Prevent text selection from interfering with click */
        flex-grow: 1;
        text-align: left;
    }

    .page-14bet-vnd__faq-toggle {
        font-size: 1.8em;
        color: #32cd32;
        font-weight: bold;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from interfering with click */
        transition: transform 0.3s ease;
    }

    .page-14bet-vnd__faq-item.active .page-14bet-vnd__faq-toggle {
        transform: rotate(45deg); /* Change + to X (or -) */
        color: #e44d26;
    }

    .page-14bet-vnd__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        box-sizing: border-box;
    }

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

    .page-14bet-vnd__faq-answer p {
        margin: 0;
        color: #ccc;
        line-height: 1.6;
    }

    /* Contact Section */
    .page-14bet-vnd__contact-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-14bet-vnd__contact-item {
        background-color: #2a2a2a;
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        color: #eee;
        font-size: 1.05em;
        max-width: 600px;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }

    .page-14bet-vnd__social-prompt {
        margin-top: 40px;
        font-size: 1.2em;
        color: #32cd32;
        font-weight: bold;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-14bet-vnd__brand-title {
            font-size: 2.5em;
        }

        .page-14bet-vnd__hero-tagline {
            font-size: 1.2em;
        }

        .page-14bet-vnd__promo-link {
            padding: 10px 20px;
            font-size: 1em;
        }

        .page-14bet-vnd__section-title {
            font-size: 2em;
        }

        .page-14bet-vnd__section-description {
            font-size: 1em;
        }

        .page-14bet-vnd__game-categories,
        .page-14bet-vnd__promotion-list {
            grid-template-columns: 1fr; /* Single column for games/promotions */
        }

        .page-14bet-vnd__game-item,
        .page-14bet-vnd__promotion-item {
            padding: 20px;
        }

        .page-14bet-vnd__game-title,
        .page-14bet-vnd__promotion-title {
            font-size: 1.4em;
        }

        .page-14bet-vnd__partner-link,
        .page-14bet-vnd__payment-link {
            padding: 10px 15px;
        }

        .page-14bet-vnd__partner-logo,
        .page-14bet-vnd__payment-logo {
            max-width: 100px;
        }

        .page-14bet-vnd__faq-question {
            padding: 15px 20px;
        }

        .page-14bet-vnd__faq-heading {
            font-size: 1.1em;
        }

        .page-14bet-vnd__faq-toggle {
            font-size: 1.5em;
        }

        .page-14bet-vnd__faq-answer {
            padding: 0 20px;
        }

        .page-14bet-vnd__faq-item.active .page-14bet-vnd__faq-answer {
            padding: 15px 20px !important;
        }

        /* Floating buttons for mobile */
        .page-14bet-vnd__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px); /* Adjust width for padding */
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
            gap: 15px;
        }

        .page-14bet-vnd__register-btn,
        .page-14bet-vnd__login-btn {
            flex: 1;
            font-size: 1em;
            padding: 10px 15px;
            min-width: unset;
        }

        /* List items mobile responsiveness */
        .page-14bet-vnd__contact-list {
            padding: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .page-14bet-vnd__contact-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-14bet-vnd__partner-logos,
        .page-14bet-vnd__payment-methods {
            gap: 10px;
        }
        .page-14bet-vnd__partner-link,
        .page-14bet-vnd__payment-link {
            flex: 1 1 calc(33% - 10px); /* 3 items per row */
            max-width: calc(33% - 10px);
            box-sizing: border-box;
            padding: 10px;
        }
        .page-14bet-vnd__partner-logo,
        .page-14bet-vnd__payment-logo {
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .page-14bet-vnd__brand-title {
            font-size: 2em;
        }
        .page-14bet-vnd__hero-tagline {
            font-size: 1em;
        }
        .page-14bet-vnd__promo-banner {
            padding: 15px;
        }
        .page-14bet-vnd__section-title {
            font-size: 1.8em;
        }
        .page-14bet-vnd__faq-question {
            padding: 12px 15px;
        }
        .page-14bet-vnd__faq-heading {
            font-size: 1em;
        }
        .page-14bet-vnd__faq-answer {
            padding: 0 15px;
        }
        .page-14bet-vnd__faq-item.active .page-14bet-vnd__faq-answer {
            padding: 10px 15px !important;
        }
        .page-14bet-vnd__partner-link,
        .page-14bet-vnd__payment-link {
            flex: 1 1 calc(50% - 10px); /* 2 items per row */
            max-width: calc(50% - 10px);
        }
    }
  