
    /* CSS cho trang Đăng ký MCW Casino */
    .page-mcwcasino {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f0f2f5;
    }

    /* Hero Section */
    .page-mcwcasino__hero-section {
        position: relative;
        background-color: #0d1a26; /* Nền tối cho độ tương phản */
        color: #fff;
        text-align: center;
        padding: 10px 20px 80px; /* Thêm padding-top cho header cố định */
        overflow: hidden;
        margin-bottom: 40px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__hero-section {
            padding: 10px 15px 60px; /* Điều chỉnh padding cho di động */
            margin-bottom: 20px;
        }
    }

    .page-mcwcasino__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6; /* Lớp phủ cho dễ đọc văn bản */
        z-index: 1;
    }

    .page-mcwcasino__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-mcwcasino__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: bold;
        color: #ffcc00; /* Màu vàng cho điểm nhấn */
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    @media (max-width: 768px) {
        .page-mcwcasino__hero-title {
            font-size: 2em;
        }
    }

    .page-mcwcasino__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #eee;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__hero-subtitle {
            font-size: 1em;
        }
    }

    .page-mcwcasino__cta-button {
        display: inline-block;
        background-color: #e44d26; /* Cam-đỏ cho CTA */
        color: #fff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .page-mcwcasino__cta-button:hover {
        background-color: #f16529;
        transform: translateY(-2px);
    }

    /* Nút khuyến mãi nổi */
    .page-mcwcasino__floating-promo {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: #ffcc00; /* Vàng cho khuyến mãi */
        color: #333;
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        font-size: 1em;
        animation: pulse 2s infinite;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none; /* Đảm bảo không có gạch chân */
    }
    .page-mcwcasino__floating-promo:hover {
        transform: scale(1.05);
        background-color: #ffd84d;
    }
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.03); }
        100% { transform: scale(1); }
    }
    @media (max-width: 768px) {
        .page-mcwcasino__floating-promo {
            bottom: 15px;
            right: 15px;
            padding: 10px 18px;
            font-size: 0.9em;
        }
    }

    /* Phong cách chung cho các phần */
    .page-mcwcasino__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__section {
            padding: 30px 15px;
            margin-bottom: 20px;
        }
    }

    .page-mcwcasino__section-title {
        font-size: 2.2em;
        color: #0d1a26;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }
    .page-mcwcasino__section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #e44d26;
        border-radius: 2px;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
    }

    .page-mcwcasino__content-text {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
        color: #444;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__content-text {
            font-size: 1em;
        }
    }

    /* Danh sách bước */
    .page-mcwcasino__steps-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__steps-list {
            flex-direction: column;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    .page-mcwcasino__step-item {
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        flex: 1;
        min-width: 280px;
        max-width: 380px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Quan trọng cho các mục danh sách responsive */
    }
    .page-mcwcasino__step-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    @media (max-width: 768px) {
        .page-mcwcasino__step-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !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-mcwcasino__step-number {
        font-size: 2.5em;
        color: #e44d26;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .page-mcwcasino__step-title {
        font-size: 1.4em;
        color: #0d1a26;
        margin-bottom: 10px;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__step-title {
            font-size: 1.2em;
        }
    }

    .page-mcwcasino__step-description {
        font-size: 1em;
        color: #555;
    }

    /* Danh mục trò chơi */
    .page-mcwcasino__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__game-categories {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    .page-mcwcasino__game-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .page-mcwcasino__game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .page-mcwcasino__game-image {
        width: 100%;
        height: 200px; /* Chiều cao cố định để nhất quán */
        object-fit: cover;
        display: block;
        max-width: 100%; /* Hình ảnh responsive */
        box-sizing: border-box; /* Container hình ảnh responsive */
        overflow: hidden; /* Container hình ảnh responsive */
    }
    @media (max-width: 768px) {
        .page-mcwcasino__game-image {
            height: 180px;
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    .page-mcwcasino__game-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__game-content {
            padding: 15px;
        }
    }

    .page-mcwcasino__game-title {
        font-size: 1.5em;
        color: #0d1a26;
        margin-bottom: 10px;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__game-title {
            font-size: 1.3em;
        }
    }

    .page-mcwcasino__game-description {
        font-size: 0.95em;
        color: #666;
        margin-bottom: 15px;
        text-align: justify;
    }

    /* Phần FAQ */
    .page-mcwcasino__faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    .page-mcwcasino__faq-item {
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        box-sizing: border-box; /* Quan trọng cho các mục danh sách responsive */
    }
    @media (max-width: 768px) {
        .page-mcwcasino__faq-item {
            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;
            word-break: break-word !important;
        }
    }

    .page-mcwcasino__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background-color: #e44d26; /* Màu CTA cho câu hỏi */
        color: #fff;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1em;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: background-color 0.3s ease;
        user-select: none;
    }
    .page-mcwcasino__faq-question:hover {
        background-color: #f16529;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__faq-question {
            padding: 15px;
            font-size: 1em;
        }
    }

    .page-mcwcasino__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #fff;
        pointer-events: none; /* Ngăn h3 can thiệp vào sự kiện click */
    }
    @media (max-width: 768px) {
        .page-mcwcasino__faq-question h3 {
            font-size: 1em;
        }
    }

    .page-mcwcasino__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        pointer-events: none; /* Ngăn biểu tượng toggle can thiệp vào sự kiện click */
        transition: transform 0.3s ease;
    }
    .page-mcwcasino__faq-item.active .page-mcwcasino__faq-toggle {
        transform: rotate(45deg); /* Xoay + để thành X hoặc - */
    }

    .page-mcwcasino__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        background-color: #fff;
        color: #333;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 1em;
        text-align: justify;
    }
    .page-mcwcasino__faq-item.active .page-mcwcasino__faq-answer {
        max-height: 2000px !important; /* Đủ lớn */
        padding: 20px 20px !important;
        opacity: 1;
    }
    @media (max-width: 768px) {
        .page-mcwcasino__faq-item.active .page-mcwcasino__faq-answer {
            padding: 15px 15px !important;
        }
    }

    /* Phong cách hình ảnh chung */
    .page-mcwcasino img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        object-fit: cover;
    }
    @media (max-width: 768px) {
        .page-mcwcasino img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }
  