
    /* CSS Styles for 8kbet com page */
    :root {
        --page-8kbets-primary-color: #e44d26; /* Cam đậm */
        --page-8kbets-secondary-color: #ff7f50; /* Cam nhạt */
        --page-8kbets-dark-background: #1a1a1a; /* Nền tối */
        --page-8kbets-light-text: #ffffff; /* Chữ sáng */
        --page-8kbets-gray-text: #cccccc; /* Chữ xám */
        --page-8kbets-border-color: #333333; /* Màu viền */
        --page-8kbets-accent-color: #ffd700; /* Vàng kim */
        --page-8kbets-button-hover: #cc3300; /* Đỏ sẫm */
    }

    .page-8kbets {
        font-family: 'Arial', sans-serif;
        color: var(--page-8kbets-light-text);
        background-color: var(--page-8kbets-dark-background);
        line-height: 1.6;
        padding-bottom: 80px; /* Space for fixed floating button */
    }

    /* Fixed header spacing */
    .page-8kbets__hero-section {
        padding-top: 120px; /* Desktop fixed header height */
    }

    @media (max-width: 768px) {
        .page-8kbets__hero-section {
            padding-top: 100px; /* Mobile fixed header height */
        }
    }

    .page-8kbets__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-8kbets__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-8kbets__section--dark {
        background-color: #222222;
    }

    .page-8kbets__title {
        font-size: 3em;
        color: var(--page-8kbets-primary-color);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-8kbets__subtitle {
        font-size: 1.8em;
        color: var(--page-8kbets-accent-color);
        margin-bottom: 40px;
    }

    .page-8kbets__text {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--page-8kbets-gray-text);
    }

    .page-8kbets__button {
        display: inline-block;
        background-color: var(--page-8kbets-primary-color);
        color: var(--page-8kbets-light-text);
        padding: 15px 30px;
        border-radius: 5px;
        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-8kbets__button:hover {
        background-color: var(--page-8kbets-button-hover);
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8kbets__hero-section {
        background-color: var(--page-8kbets-dark-background);
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .page-8kbets__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-8kbets__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        object-fit: contain; /* Ensure image maintains aspect ratio and fits */
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px;
    }

    .page-8kbets__hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-8kbets__hero-title {
        font-size: 3.5em;
        color: var(--page-8kbets-accent-color);
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .page-8kbets__hero-description {
        font-size: 1.3em;
        color: var(--page-8kbets-gray-text);
        margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-8kbets__floating-login {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background-color: var(--page-8kbets-primary-color);
        color: var(--page-8kbets-light-text);
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap; /* Prevent text wrapping */
    }

    .page-8kbets__floating-login:hover {
        background-color: var(--page-8kbets-button-hover);
        transform: translateX(-50%) translateY(-3px);
    }

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

    .page-8kbets__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
    }

    .page-8kbets__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-8kbets__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for consistent card appearance */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
    }

    .page-8kbets__game-card-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover; /* Cover the area, cropping if necessary */
        min-height: 200px; /* Ensure images are not tiny */
        min-width: 200px;
    }

    .page-8kbets__game-card-title {
        font-size: 1.5em;
        color: var(--page-8kbets-accent-color);
        margin: 20px 10px 10px;
        min-height: 48px; /* Ensure consistent title height */
    }

    .page-8kbets__game-card-title a {
        color: var(--page-8kbets-accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-8kbets__game-card-title a:hover {
        color: var(--page-8kbets-primary-color);
    }

    /* Why Choose Us Section */
    .page-8kbets__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8kbets__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease;
    }

    .page-8kbets__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-8kbets__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-8kbets__feature-icon {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 15px;
        width: 100px; /* Adjust size for feature icons, still >200 */
        height: 100px;
        object-fit: contain;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px;
    }

    .page-8kbets__feature-title {
        font-size: 1.6em;
        color: var(--page-8kbets-primary-color);
        margin-bottom: 15px;
    }

    .page-8kbets__feature-description {
        color: var(--page-8kbets-gray-text);
    }

    /* Game Providers Section */
    .page-8kbets__provider-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-items: center;
    }

    .page-8kbets__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 10px;
        background-color: #2a2a2a;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8kbets__provider-logo-wrapper:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .page-8kbets__provider-logo {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px;
    }

    /* FAQ Section */
    .page-8kbets__faq-list {
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

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

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

    .page-8kbets__faq-question:hover {
        background-color: #444444;
    }

    .page-8kbets__faq-question h3 {
        margin: 0;
        font-size: 1.3em;
        color: var(--page-8kbets-light-text);
        pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-8kbets__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-8kbets-accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

    .page-8kbets__faq-item.active .page-8kbets__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-8kbets__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;
        color: var(--page-8kbets-gray-text);
    }

    .page-8kbets__faq-item.active .page-8kbets__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-8kbets__title {
            font-size: 2.5em;
        }
        .page-8kbets__subtitle {
            font-size: 1.5em;
        }
        .page-8kbets__hero-title {
            font-size: 3em;
        }
        .page-8kbets__hero-description {
            font-size: 1.1em;
        }
        .page-8kbets__game-categories {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        .page-8kbets__features-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        .page-8kbets__provider-logos {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-8kbets__section {
            padding: 40px 0;
        }
        .page-8kbets__title {
            font-size: 2em;
        }
        .page-8kbets__subtitle {
            font-size: 1.2em;
        }
        .page-8kbets__hero-title {
            font-size: 2.5em;
        }
        .page-8kbets__hero-description {
            font-size: 1em;
        }
        .page-8kbets__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8kbets__floating-login {
            padding: 12px 20px;
            font-size: 1em;
            bottom: 15px;
            width: auto;
            max-width: 90%;
            text-align: center;
        }
        .page-8kbets__game-categories {
            grid-template-columns: 1fr;
        }
        .page-8kbets__features-grid {
            grid-template-columns: 1fr;
        }
        .page-8kbets__feature-item {
            padding: 25px;
        }
        .page-8kbets__provider-logos {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
        .page-8kbets__game-card-image,
        .page-8kbets__feature-icon,
        .page-8kbets__provider-logo,
        .page-8kbets__hero-image {
            max-width: 100% !important;
            height: auto !important;
        }
    }

    @media (max-width: 480px) {
        .page-8kbets__hero-title {
            font-size: 2em;
        }
        .page-8kbets__hero-description {
            font-size: 0.9em;
        }
        .page-8kbets__faq-question {
            padding: 15px 20px;
        }
        .page-8kbets__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8kbets__faq-answer {
            padding: 15px 20px;
        }
    }
  