
    :root {
      --primary-color: #FFD700; /* Vàng */
      --secondary-color: #00BFFF; /* Xanh da trời sâu */
      --dark-bg: #1a1a2e; /* Tím xanh đậm */
      --light-text: #e0e0e0;
      --accent-red: #E74C3C;
      --button-hover-bg: #FFC107;
      --section-padding: 60px 20px;
      --mobile-padding: 30px 15px;
    }

    /* Phong cách chung cho trang */
    .page-11u {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-bg);
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn cuộn ngang từ các phần tử cố định */
    }

    .page-11u__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-11u__section {
      padding: var(--section-padding);
      text-align: center;
    }

    .page-11u__section--dark {
      background-color: #24243e;
    }

    .page-11u__heading {
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      line-height: 1.2;
    }

    .page-11u__subheading {
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-11u__paragraph {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: var(--light-text);
    }

    /* Nút Đăng Ký/Đăng Nhập nổi */
    .page-11u__floating-buttons {
      position: fixed;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-11u__floating-button {
      background-color: var(--primary-color);
      color: var(--dark-bg);
      border: none;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Dành cho thẻ a */
      display: block; /* Dành cho thẻ a */
      text-align: center;
      min-width: 100px; /* Đảm bảo nút không quá nhỏ */
    }

    .page-11u__floating-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
    }

    /* Phần Hero */
    .page-11u__hero-section {
      background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('[GALLERY:hero:1920x1080:betting,casino,vietnam,11u]') no-repeat center center/cover;
      padding: 10px 20px var(--section-padding); /* Thêm 10px padding trên theo yêu cầu */
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .page-11u__hero-content {
      max-width: 800px;
      z-index: 10;
    }

    .page-11u__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 25px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-11u__hero-description {
      font-size: 1.4em;
      color: var(--light-text);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-11u__cta-button {
      background-color: var(--secondary-color);
      color: var(--dark-bg);
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-11u__cta-button:hover {
      background-color: #009ACD; /* Màu xanh thứ cấp đậm hơn */
      transform: translateY(-3px);
    }

    /* Phần Danh mục trò chơi */
    .page-11u__game-categories {
      background-color: #2e2e4a;
    }

    .page-11u__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-11u__game-card {
      background-color: var(--dark-bg);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center; /* Căn giữa nội dung theo chiều ngang */
      justify-content: center; /* Căn giữa nội dung theo chiều dọc */
    }

    .page-11u__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    }

    .page-11u__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 250px; /* Chiều cao cố định cho hình ảnh */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-11u__game-card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Bao phủ khu vực, cắt nếu cần */
      border-bottom: 5px solid var(--primary-color);
      filter: none; /* Đảm bảo không có bộ lọc màu */
    }

    .page-11u__game-card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      padding: 20px 15px;
      font-weight: bold;
      text-decoration: none; /* Đảm bảo không gạch chân cho liên kết nếu nó trở thành một */
      display: block; /* Biến tiêu đề thành phần tử khối để có padding */
    }

    /* Phần Khuyến mãi */
    .page-11u__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-11u__promo-card {
      background-color: #24243e;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      text-align: left;
      padding: 25px;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-11u__promo-card:hover {
      transform: translateY(-5px);
      background-color: #38385e;
    }

    .page-11u__promo-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-11u__promo-description {
      font-size: 1em;
      color: var(--light-text);
      margin-bottom: 20px;
    }

    .page-11u__promo-button {
      background-color: var(--secondary-color);
      color: var(--dark-bg);
      padding: 10px 25px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease;
    }

    .page-11u__promo-button:hover {
      background-color: #009ACD;
    }

    /* Phần Giới thiệu */
    .page-11u__about-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 40px;
    }

    .page-11u__about-item {
      display: flex;
      align-items: center;
      gap: 20px;
      text-align: left;
      background-color: #24243e;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-11u__about-icon-wrapper {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: var(--secondary-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .page-11u__about-icon {
        width: 60px; /* Kích thước ví dụ, điều chỉnh theo nhu cầu */
        height: 60px; /* Kích thước ví dụ, điều chỉnh theo nhu cầu */
        max-width: 100%;
        object-fit: contain;
        filter: none; /* Đảm bảo không có bộ lọc màu */
    }

    .page-11u__about-text h3 {
      color: var(--primary-color);
      margin-bottom: 5px;
      font-size: 1.4em;
    }

    .page-11u__about-text p {
      color: var(--light-text);
      font-size: 1em;
    }

    /* Phần Thanh toán & Nhà cung cấp */
    .page-11u__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-11u__logo-item {
        background-color: #24243e;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px; /* Chiều cao cố định để hiển thị đồng đều */
        width: 100%;
        max-width: 200px; /* Chiều rộng tối đa cho mỗi mục */
        box-sizing: border-box;
    }

    .page-11u__logo-item a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .page-11u__logo-image {
      max-width: 100%;
      max-height: 70px; /* Điều chỉnh dựa trên tỷ lệ logo */
      height: auto;
      object-fit: contain;
      filter: none; /* Đảm bảo không có bộ lọc màu */
    }

    /* Phần Câu hỏi thường gặp */
    .page-11u__faq-section {
      text-align: left;
    }

    .page-11u__faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-11u__faq-item {
      background-color: #24243e;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      color: var(--light-text);
    }

    .page-11u__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2e2e4a;
      transition: background-color 0.3s ease;
    }

    .page-11u__faq-question:hover {
      background-color: #38385e;
    }

    .page-11u__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-11u__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn span chặn sự kiện click */
    }

    .page-11u__faq-item.active .page-11u__faq-toggle {
      transform: rotate(45deg); /* Dấu cộng thành dấu X khi hoạt động */
    }

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

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

    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-11u__section {
        padding: var(--mobile-padding);
      }

      .page-11u__heading {
        font-size: 2em;
      }

      .page-11u__subheading {
        font-size: 1.5em;
      }

      .page-11u__hero-section {
        min-height: 450px;
        padding-top: 10px; /* Giữ nhất quán với máy tính để bàn, padding của body xử lý offset */
        padding-bottom: var(--mobile-padding);
      }

      .page-11u__hero-title {
        font-size: 2.5em;
      }

      .page-11u__hero-description {
        font-size: 1.1em;
      }

      .page-11u__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-11u__game-grid {
        grid-template-columns: 1fr;
      }

      .page-11u__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-11u__about-item {
        flex-direction: column;
        text-align: center;
      }

      .page-11u__about-icon-wrapper {
        margin-bottom: 15px;
      }
      
      .page-11u__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      /* Khả năng đáp ứng của các mục danh sách cho tất cả các cấu trúc giống danh sách */
      .page-11u__game-card,
      .page-11u__promo-card,
      .page-11u__about-item,
      .page-11u__logo-item,
      .page-11u__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Điều chỉnh padding để phù hợp với màn hình nhỏ hơn */
        padding-right: 15px !important; /* Điều chỉnh padding để phù hợp với màn hình nhỏ hơn */
      }

      .page-11u__game-card-title,
      .page-11u__promo-title,
      .page-11u__about-text h3,
      .page-11u__faq-question h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-11u__floating-buttons {
        right: 10px;
        gap: 10px;
      }

      .page-11u__floating-button {
        padding: 10px 15px;
        font-size: 1em;
        min-width: 80px;
      }
    }

    @media (max-width: 480px) {
        .page-11u__hero-title {
            font-size: 2em;
        }
        .page-11u__hero-description {
            font-size: 1em;
        }
        .page-11u__faq-question h3 {
            font-size: 1.1em;
        }
        .page-11u__faq-question, .page-11u__faq-answer {
            padding-left: 15px;
            padding-right: 15px;
        }
        .page-11u__faq-item.active .page-11u__faq-answer {
            padding: 15px 15px !important;
        }
    }
  