
    :root {
      --primary-color: #e44d26; /* Màu sắc nổi bật, ví dụ: cam đỏ */
      --secondary-color: #333;
      --background-dark: #1a1a1a;
      --background-light: #f4f4f4;
      --text-color-dark: #eee;
      --text-color-light: #333;
      --border-color: #444;
      --card-background: #2a2a2a;
      --button-hover: #ff6f40;
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color-dark);
        background-color: var(--background-dark);
        margin: 0;
        padding: 0; /* Giả định shared.css xử lý padding-top cho header cố định */
        box-sizing: border-box;
    }

    /* Phong cách cơ bản cho trang cụ thể */
    .page-66bvn {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px; /* Một chút padding ở trên, giả định body đã xử lý bù trừ header */
        box-sizing: border-box;
    }

    .page-66bvn__section {
        padding: 40px 15px;
        margin-bottom: 30px;
        border-radius: 8px;
        background-color: var(--background-dark);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }
    
    .page-66bvn__section--light {
        background-color: var(--card-background);
        color: var(--text-color-dark);
    }

    .page-66bvn__title {
        text-align: center;
        color: var(--primary-color);
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-66bvn__subtitle {
        text-align: center;
        color: var(--text-color-dark);
        margin-bottom: 25px;
        font-size: 1.8em;
    }

    .page-66bvn__text {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.1em;
        color: var(--text-color-dark);
    }

    .page-66bvn__button {
        display: block;
        width: fit-content;
        margin: 20px auto;
        padding: 12px 30px;
        background-color: var(--primary-color);
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-66bvn__button:hover {
        background-color: var(--button-hover);
        transform: translateY(-2px);
    }

    /* Phần Hero */
    .page-66bvn__hero-section {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:betting,casino,mobile,vietnam,66bvn]') no-repeat center center/cover;
        color: white;
        text-align: center;
        padding: 80px 15px 60px; /* Đã điều chỉnh padding-top */
        border-radius: 8px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        box-sizing: border-box;
    }

    .page-66bvn__hero-title {
        font-size: 3em;
        margin-bottom: 15px;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
        line-height: 1.2;
    }

    .page-66bvn__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        max-width: 800px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    }

    /* Lưới sản phẩm */
    .page-66bvn__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        justify-content: center;
        padding: 0;
        list-style: none;
    }

    .page-66bvn__product-card {
        background-color: var(--card-background);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
        border: 1px solid var(--border-color);
    }

    .page-66bvn__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-66bvn__product-image {
        width: 100%;
        height: 200px; /* Chiều cao cố định để nhất quán */
        object-fit: cover;
        display: block;
        border-bottom: 1px solid var(--border-color);
        max-width: 100%; /* Đảm bảo responsive */
        height: auto; /* Duy trì tỷ lệ khung hình */
    }

    .page-66bvn__product-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-66bvn__product-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 10px;
        text-align: center;
    }

    .page-66bvn__product-description {
        font-size: 0.95em;
        color: var(--text-color-dark);
        margin-bottom: 15px;
        text-align: center;
    }

    /* Phần Khuyến mãi */
    .page-66bvn__promotions-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .page-66bvn__promotion-item {
        background-color: var(--card-background);
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        border-left: 5px solid var(--primary-color);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-66bvn__promotion-item:hover {
        transform: translateX(5px);
    }

    .page-66bvn__promotion-title {
        color: var(--primary-color);
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .page-66bvn__promotion-description {
        font-size: 1em;
        color: var(--text-color-dark);
    }

    /* Phần Tại sao chọn */
    .page-66bvn__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 0;
        list-style: none;
    }

    .page-66bvn__feature-item {
        background-color: var(--card-background);
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-66bvn__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-66bvn__feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        height: auto;
    }

    .page-66bvn__feature-title {
        color: var(--primary-color);
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .page-66bvn__feature-description {
        font-size: 0.95em;
        color: var(--text-color-dark);
    }

    /* Phương thức thanh toán & Nhà cung cấp trò chơi */
    .page-66bvn__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        justify-content: center;
        align-items: center;
        padding: 0;
        list-style: none;
    }

    .page-66bvn__logo-item {
        background-color: var(--card-background);
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-66bvn__logo-item:hover {
        transform: scale(1.05);
    }

    .page-66bvn__logo-image {
        max-width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
        max-height: 50px; /* Giới hạn chiều cao để trông đồng nhất */
        object-fit: contain;
        max-width: 100%;
    }
    
    .page-66bvn__logo-name {
        font-size: 0.85em;
        color: var(--text-color-dark);
        margin-top: 10px;
        word-wrap: break-word; /* Đảm bảo văn bản xuống dòng */
        overflow-wrap: break-word;
    }

    /* Phần FAQ */
    .page-66bvn__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-66bvn__faq-item {
        background-color: var(--card-background);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-66bvn__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a3a;
        transition: background-color 0.3s ease;
    }

    .page-66bvn__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-66bvn__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--primary-color);
        pointer-events: none; /* Ngăn chặn việc chọn văn bản làm gián đoạn sự kiện click */
        flex-grow: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-66bvn__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Ngăn chặn biểu tượng làm gián đoạn sự kiện click */
        line-height: 1;
    }

    .page-66bvn__faq-item.active .page-66bvn__faq-toggle {
        transform: rotate(45deg); /* Biểu tượng xoay khi mở rộng */
    }

    .page-66bvn__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Padding ban đầu */
        opacity: 0;
        color: var(--text-color-dark);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        font-size: 1em;
        line-height: 1.8;
    }

    .page-66bvn__faq-item.active .page-66bvn__faq-answer {
        max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
        padding: 20px 15px !important; /* Padding khi mở rộng */
        opacity: 1;
    }

    /* Thiết kế Responsive */
    @media (max-width: 768px) {
        .page-66bvn {
            padding: 5px;
        }

        .page-66bvn__hero-section {
            padding: 60px 10px 40px;
            min-height: 300px;
        }

        .page-66bvn__hero-title {
            font-size: 2.2em;
        }

        .page-66bvn__hero-description {
            font-size: 1.1em;
        }

        .page-66bvn__title {
            font-size: 2em;
        }

        .page-66bvn__subtitle {
            font-size: 1.5em;
        }

        .page-66bvn__section {
            padding: 30px 10px;
            margin-bottom: 20px;
        }

        .page-66bvn__product-grid,
        .page-66bvn__promotions-list,
        .page-66bvn__features-grid,
        .page-66bvn__logo-grid {
            grid-template-columns: 1fr; /* Một cột duy nhất cho tất cả các lưới */
            gap: 15px;
        }
        
        .page-66bvn__product-card,
        .page-66bvn__promotion-item,
        .page-66bvn__feature-item,
        .page-66bvn__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px !important; /* Điều chỉnh padding cho màn hình nhỏ hơn */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-66bvn__product-image {
            height: 180px; /* Điều chỉnh chiều cao hình ảnh cho di động */
        }
        
        .page-66bvn__logo-image {
            max-width: 80px;
            max-height: 40px;
        }

        .page-66bvn__faq-question {
            padding: 12px 15px;
        }

        .page-66bvn__faq-question h3 {
            font-size: 1.1em;
        }

        .page-66bvn__faq-toggle {
            font-size: 1.5em;
        }

        .page-66bvn__faq-answer {
            padding: 15px 15px !important; /* Điều chỉnh padding cho di động */
            font-size: 0.95em;
        }
    }

    @media (max-width: 480px) {
        .page-66bvn__hero-title {
            font-size: 1.8em;
        }

        .page-66bvn__hero-description {
            font-size: 1em;
        }

        .page-66bvn__title {
            font-size: 1.8em;
        }

        .page-66bvn__subtitle {
            font-size: 1.3em;
        }
        
        .page-66bvn__button {
            padding: 10px 25px;
            font-size: 1em;
        }
    }

    /* Phong cách responsive cho tất cả hình ảnh */
    .page-66bvn img {
        max-width: 100%;
        height: auto;
        display: block; /* Loại bỏ khoảng trống thừa bên dưới hình ảnh */
    }
    .page-66bvn__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-66bvn img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-66bvn__image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }
  