
    :root {
        --primary-color: #e44d26; /* Một màu cam đỏ rực rỡ cho các hành động */
        --secondary-color: #333;
        --text-color: #fff;
        --background-dark: #1a1a1a;
        --background-light: #2c2c2c;
        --accent-color: #ffcc00; /* Màu vàng cho các điểm nhấn */
        --border-radius-small: 5px;
        --border-radius-medium: 10px;
        --padding-section: 40px 20px;
        --font-family: 'Arial', sans-serif; /* Sử dụng một font phổ biến */
    }

    .page-32wim-com {
        font-family: var(--font-family);
        color: var(--text-color);
        background-color: var(--background-dark);
        line-height: 1.6;
        padding-top: 10px; /* Khoảng đệm nhỏ ở trên để tách biệt trực quan với header */
    }

    /* General Section Styling */
    .page-32wim-com__section {
        padding: var(--padding-section);
        margin-bottom: 20px;
        background-color: var(--background-light);
        border-radius: var(--border-radius-medium);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-32wim-com__section--dark {
        background-color: var(--background-dark);
    }

    .page-32wim-com__heading {
        color: var(--accent-color);
        margin-bottom: 25px;
        font-size: 2.2em;
        font-weight: bold;
    }

    .page-32wim-com__subheading {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.6em;
    }

    .page-32wim-com__paragraph {
        margin-bottom: 15px;
        font-size: 1.1em;
        color: #ddd;
    }

    /* Hero Section */
    .page-32wim-com__hero-section {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:betting,casino,sports,32wim]') no-repeat center center/cover;
        padding: 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-radius: var(--border-radius-medium);
    }

    .page-32wim-com__hero-title {
        font-size: 3em;
        color: var(--accent-color);
        margin-bottom: 15px;
        text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    }

    .page-32wim-com__hero-description {
        font-size: 1.3em;
        color: #eee;
        max-width: 800px;
        margin: 0 auto 30px auto;
        line-height: 1.5;
    }

    .page-32wim-com__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-color);
        padding: 15px 30px;
        border-radius: var(--border-radius-medium);
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        margin: 10px;
    }

    .page-32wim-com__cta-button:hover {
        background-color: #ff6633;
        transform: translateY(-2px);
    }

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

    .page-32wim-com__floating-buttons .page-32wim-com__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 150px; /* Chiều rộng cố định để nhất quán */
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    /* Game Categories Section */
    .page-32wim-com__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-32wim-com__game-card {
        background-color: var(--background-dark);
        border-radius: var(--border-radius-medium);
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 300px; /* Đảm bảo các thẻ có chiều cao tối thiểu */
    }

    .page-32wim-com__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

    .page-32wim-com__game-card-image-wrapper {
        width: 100%;
        height: 180px; /* Chiều cao cố định cho hình ảnh */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000; /* Nền giữ chỗ */
    }

    .page-32wim-com__game-card-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .page-32wim-com__game-card-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-32wim-com__game-card-title {
        font-size: 1.4em;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: bold;
        word-wrap: break-word; /* Đảm bảo tiêu đề dài xuống dòng */
    }

    .page-32wim-com__game-card-description {
        font-size: 0.95em;
        color: #bbb;
        margin-bottom: 15px;
        word-wrap: break-word; /* Đảm bảo mô tả dài xuống dòng */
    }

    /* Promotions Section */
    .page-32wim-com__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-32wim-com__promotion-card {
        background-color: var(--background-dark);
        border-radius: var(--border-radius-medium);
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        min-height: 350px;
    }

    .page-32wim-com__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

    .page-32wim-com__promotion-card-image-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000;
    }

    .page-32wim-com__promotion-card-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .page-32wim-com__promotion-card-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .page-32wim-com__promotion-card-title {
        font-size: 1.3em;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: bold;
        word-wrap: break-word;
    }

    .page-32wim-com__promotion-card-description {
        font-size: 1em;
        color: #ccc;
        margin-bottom: 15px;
        flex-grow: 1;
        word-wrap: break-word;
    }

    /* About Section */
    .page-32wim-com__about-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: left;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-32wim-com__about-image-wrapper {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 20px auto;
        border-radius: var(--border-radius-medium);
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .page-32wim-com__about-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Payment & Providers Section */
    .page-32wim-com__partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        justify-items: center;
    }

    .page-32wim-com__partner-item {
        background-color: var(--background-dark);
        padding: 15px;
        border-radius: var(--border-radius-small);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px; /* Chiều cao đồng nhất cho logo */
        width: 100%;
        max-width: 180px; /* Chiều rộng tối đa cho các mục rộng hơn */
        transition: transform 0.2s ease;
    }

    .page-32wim-com__partner-item:hover {
        transform: translateY(-3px);
    }

    .page-32wim-com__partner-logo {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-32wim-com__faq-list {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .page-32wim-com__faq-item {
        background-color: var(--background-dark);
        border-radius: var(--border-radius-medium);
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-32wim-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #3a3a3a;
        color: var(--accent-color);
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-32wim-com__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-32wim-com__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Ngăn h3 chặn sự kiện click */
        word-wrap: break-word;
    }

    .page-32wim-com__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Ngăn nút toggle chặn sự kiện click */
        transition: transform 0.3s ease;
    }

    .page-32wim-com__faq-item.active .page-32wim-com__faq-toggle {
        transform: rotate(45deg); /* Thay đổi + thành dạng X khi active */
    }

    .page-32wim-com__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: #ccc;
        font-size: 1em;
    }

    .page-32wim-com__faq-item.active .page-32wim-com__faq-answer {
        max-height: 2000px !important; /* Đủ lớn */
        padding: 20px 20px !important;
        opacity: 1;
    }

    /* Contact & Social Section */
    .page-32wim-com__contact-info {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .page-32wim-com__contact-item {
        margin-bottom: 10px;
        font-size: 1.1em;
        color: #eee;
    }

    .page-32wim-com__social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .page-32wim-com__social-icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: #3a3a3a;
        border-radius: 50%;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-32wim-com__social-icon-wrapper:hover {
        background-color: var(--primary-color);
        transform: translateY(-3px);
    }

    .page-32wim-com__social-icon {
        width: 30px;
        height: 30px;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-32wim-com__hero-section {
            padding: 60px 15px;
        }

        .page-32wim-com__hero-title {
            font-size: 2.5em;
        }

        .page-32wim-com__hero-description {
            font-size: 1.1em;
        }

        .page-32wim-com__cta-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }

        .page-32wim-com__section {
            padding: 30px 15px;
        }

        .page-32wim-com__heading {
            font-size: 1.8em;
        }

        .page-32wim-com__subheading {
            font-size: 1.4em;
        }

        .page-32wim-com__paragraph {
            font-size: 1em;
        }

        .page-32wim-com__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            bottom: 10px;
            right: 10px;
            left: 10px;
            justify-content: space-around;
        }

        .page-32wim-com__floating-buttons .page-32wim-com__cta-button {
            width: 48%; /* Điều chỉnh cho hai nút */
            margin: 0;
            padding: 10px 15px;
            font-size: 0.9em;
        }

        /* List items responsive */
        .page-32wim-com__game-categories,
        .page-32wim-com__promotion-grid,
        .page-32wim-com__partners-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-32wim-com__game-card,
        .page-32wim-com__promotion-card,
        .page-32wim-com__partner-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-32wim-com__game-card-title,
        .page-32wim-com__promotion-card-title {
            font-size: 1.2em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-32wim-com__game-card-description,
        .page-32wim-com__promotion-card-description {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-32wim-com__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }

        .page-32wim-com__faq-question h3 {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-32wim-com__faq-answer {
            padding: 15px 15px !important;
            font-size: 0.95em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-32wim-com__social-icon-wrapper {
            width: 45px;
            height: 45px;
        }

        .page-32wim-com__social-icon {
            width: 25px;
            height: 25px;
        }

        /* Ensure all images are responsive */
        .page-32wim-com__hero-section img,
        .page-32wim-com__game-card-image,
        .page-32wim-com__promotion-card-image,
        .page-32wim-com__about-image,
        .page-32wim-com__partner-logo,
        .page-32wim-com__social-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-32wim-com__game-card-image-wrapper,
        .page-32wim-com__promotion-card-image-wrapper,
        .page-32wim-com__about-image-wrapper,
        .page-32wim-com__partner-item,
        .page-32wim-com__social-icon-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }
  