
    :root {
      --primary-color: #e44d26; /* Cam đỏ */
      --secondary-color: #333; /* Xám đậm */
      --accent-color: #f0ad4e; /* Vàng hổ phách */
      --background-light: #f9f9f9; /* Nền sáng */
      --text-color-dark: #333; /* Chữ tối */
      --text-color-light: #fff; /* Chữ sáng */
      --border-color: #ddd; /* Màu viền */
      --button-bg-color: #e44d26;
      --button-text-color: #fff;
      --button-hover-bg-color: #d43f20;
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color-dark);
        background-color: var(--background-light);
        margin: 0;
        padding-top: var(--header-offset, 0px); /* Sử dụng biến CSS cho khoảng cách với header cố định */
    }

    .page-thabet88-win {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 15px 80px 15px; /* Giảm padding-bottom để nhường chỗ cho nút nổi */
        box-sizing: border-box;
    }

    .page-thabet88-win__section {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 25px;
        padding: 30px;
        box-sizing: border-box;
    }

    .page-thabet88-win__hero-section {
        background: linear-gradient(135deg, var(--primary-color), #ff7f50);
        color: var(--text-color-light);
        text-align: center;
        padding: 50px 20px;
        margin-bottom: 25px;
        border-radius: 8px;
        box-sizing: border-box;
        padding-top: 60px; /* Thêm padding-top để tránh bị che bởi header cố định */
    }

    .page-thabet88-win__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: bold;
        color: var(--text-color-light);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-thabet88-win__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        line-height: 1.5;
        color: var(--text-color-light);
    }

    .page-thabet88-win__button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-color-dark);
        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-thabet88-win__button:hover {
        background-color: #e09b3d;
        transform: translateY(-2px);
    }

    .page-thabet88-win__section-title {
        font-size: 2em;
        color: var(--primary-color);
        margin-bottom: 25px;
        text-align: center;
        position: relative;
        padding-bottom: 10px;
    }

    .page-thabet88-win__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    .page-thabet88-win__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-thabet88-win__card {
        background-color: var(--background-light);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-thabet88-win__card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }

    .page-thabet88-win__card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .page-thabet88-win__card-content {
        padding: 20px;
    }

    .page-thabet88-win__card-title {
        font-size: 1.4em;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .page-thabet88-win__card-description {
        font-size: 0.95em;
        color: #555;
    }

    .page-thabet88-win__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 15px;
    }

    .page-thabet88-win__list-item {
        background-color: var(--background-light);
        padding: 15px 20px;
        border-radius: 5px;
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        word-wrap: break-word; /* Đảm bảo từ dài tự động xuống dòng */
        overflow-wrap: break-word; /* Đảm bảo từ dài tự động xuống dòng */
    }

    .page-thabet88-win__cta-section {
        text-align: center;
        padding: 40px 20px;
        background-color: var(--primary-color);
        color: var(--text-color-light);
        border-radius: 8px;
        box-sizing: border-box;
    }

    .page-thabet88-win__cta-title {
        font-size: 2.2em;
        margin-bottom: 15px;
        color: var(--text-color-light);
    }

    .page-thabet88-win__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: var(--text-color-light);
    }

    /* FAQ Section */
    .page-thabet88-win__faq-section {
        margin-top: 30px;
    }

    .page-thabet88-win__faq-item {
        background-color: var(--background-light);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-thabet88-win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background-color: #f0f0f0;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        color: var(--secondary-color);
    }

    .page-thabet88-win__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-thabet88-win__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        flex-grow: 1;
        text-align: left;
        color: var(--secondary-color);
        pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-thabet88-win__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-thabet88-win__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;
        color: var(--text-color-dark);
    }

    .page-thabet88-win__faq-item.active .page-thabet88-win__faq-answer {
        max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
        padding: 20px !important;
        opacity: 1;
    }

    .page-thabet88-win__faq-item.active .page-thabet88-win__faq-question {
        background-color: #e0e0e0;
    }

    .page-thabet88-win__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
    }

    .page-thabet88-win__faq-answer p:last-child {
        padding-bottom: 0;
    }

    /* Floating Register/Login Buttons */
    .page-thabet88-win__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 10px 15px;
        background-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        box-sizing: border-box;
    }

    .page-thabet88-win__floating-button {
        flex: 1;
        max-width: 180px;
        padding: 12px 0;
        border-radius: 5px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
        box-sizing: border-box;
    }

    .page-thabet88-win__floating-button--register {
        background-color: var(--primary-color);
        color: var(--text-color-light);
    }

    .page-thabet88-win__floating-button--register:hover {
        background-color: var(--button-hover-bg-color);
        transform: translateY(-2px);
    }

    .page-thabet88-win__floating-button--login {
        background-color: var(--accent-color);
        color: var(--text-color-dark);
    }

    .page-thabet88-win__floating-button--login:hover {
        background-color: #e09b3d;
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-thabet88-win {
            padding: 10px 10px 80px 10px;
        }

        .page-thabet88-win__hero-title {
            font-size: 2.2em;
        }

        .page-thabet88-win__hero-subtitle {
            font-size: 1.1em;
        }

        .page-thabet88-win__section {
            padding: 20px;
        }

        .page-thabet88-win__section-title {
            font-size: 1.8em;
        }

        .page-thabet88-win__grid {
            grid-template-columns: 1fr;
        }

        .page-thabet88-win__card-image {
            height: 180px;
        }

        .page-thabet88-win__list {
            gap: 10px;
        }

        .page-thabet88-win__list-item {
            padding: 12px 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            font-size: 0.9em;
        }

        .page-thabet88-win__cta-title {
            font-size: 1.8em;
        }

        .page-thabet88-win__cta-description {
            font-size: 1em;
        }

        .page-thabet88-win__floating-buttons {
            gap: 8px;
            padding: 8px 10px;
        }

        .page-thabet88-win__floating-button {
            padding: 10px 0;
            font-size: 0.9em;
        }

        .page-thabet88-win__faq-question {
            padding: 15px;
        }

        .page-thabet88-win__faq-question h3 {
            font-size: 1em;
        }

        .page-thabet88-win__faq-toggle {
            font-size: 1.2em;
            margin-left: 10px;
        }

        .page-thabet88-win__faq-answer {
            padding: 0 15px;
        }
        .page-thabet88-win__faq-item.active .page-thabet88-win__faq-answer {
            padding: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-thabet88-win__hero-title {
            font-size: 1.8em;
        }
        .page-thabet88-win__hero-subtitle {
            font-size: 0.95em;
        }
        .page-thabet88-win__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
        .page-thabet88-win__section-title {
            font-size: 1.5em;
        }
        .page-thabet88-win__card-title {
            font-size: 1.2em;
        }
        .page-thabet88-win__card-description {
            font-size: 0.85em;
        }
        .page-thabet88-win__cta-title {
            font-size: 1.5em;
        }
        .page-thabet88-win__cta-description {
            font-size: 0.9em;
        }
    }
  