
    /* Tổng thể */
    .page-188bet {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #000000;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Tiêu đề chính */
    .page-188bet__main-title {
      text-align: center;
      color: #ffcc00;
      font-size: 2.5em;
      margin-bottom: 20px;
      padding-top: 120px; /* Dành chỗ cho header cố định */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    /* Phần Hero */
    .page-188bet__hero-section {
      position: relative;
      text-align: center;
      color: #ffffff;
      padding-bottom: 40px;
      background-color: #1a1a1a;
      padding-top: 120px; /* Dành chỗ cho header cố định */
    }

    .page-188bet__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-188bet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-188bet__hero-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-188bet__hero-title {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 15px;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    }

    .page-188bet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-188bet__cta-button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }

    .page-188bet__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Nút Đăng nhập/Đăng ký nổi */
    .page-188bet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-188bet__pulse 2s infinite;
      text-align: center;
      max-width: 200px; /* Giới hạn chiều rộng cho di động */
    }

    .page-188bet__floating-button:hover {
      background-color: #c82333;
      transform: translateY(-2px);
    }

    @keyframes page-188bet__pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    /* Các phần nội dung chung */
    .page-188bet__section {
      padding: 60px 20px;
      margin-bottom: 30px;
      background-color: #1a1a1a;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .page-188bet__section-title {
      text-align: center;
      color: #ffcc00;
      font-size: 2em;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-188bet__section-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-188bet__text-block {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    /* Lưới sản phẩm/game */
    .page-188bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 15px;
    }

    .page-188bet__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-188bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-188bet__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-188bet__game-card-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh game */
      object-fit: cover;
      display: block;
    }

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

    .page-188bet__game-card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-188bet__game-card-title a {
      color: #ffcc00;
      text-decoration: none;
    }

    .page-188bet__game-card-title a:hover {
      color: #ffd700;
    }

    .page-188bet__game-card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    .page-188bet__game-card-button {
      display: inline-block;
      background-color: #28a745;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Đẩy nút xuống dưới */
    }

    .page-188bet__game-card-button:hover {
      background-color: #218838;
    }

    /* Nhà cung cấp game */
    .page-188bet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-188bet__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-188bet__provider-logo-container:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-188bet__provider-logo {
      max-width: 100%;
      max-height: 80px; /* Giới hạn chiều cao cho logo nhà cung cấp */
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Hướng dẫn */
    .page-188bet__guide-list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-188bet__guide-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      padding: 20px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-188bet__guide-item h3 {
      color: #ffcc00;
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-188bet__guide-item p {
      color: #c0c0c0;
      font-size: 1em;
    }

    /* FAQ */
    .page-188bet__faq-section {
      padding: 60px 20px;
      margin-bottom: 30px;
      background-color: #1a1a1a;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .page-188bet__faq-title {
      text-align: center;
      color: #ffcc00;
      font-size: 2em;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-188bet__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0;
    }

    .page-188bet__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .page-188bet__faq-item:hover {
      background-color: #3a3a3a;
    }

    .page-188bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #333;
    }

    .page-188bet__faq-question h3 {
      color: #ffffff;
      font-size: 1.3em;
      margin: 0;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-188bet__faq-toggle {
      color: #ffcc00;
      font-size: 1.8em;
      font-weight: bold;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle icon chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-188bet__faq-item.active .page-188bet__faq-toggle {
      transform: rotate(45deg); /* Chuyển '+' thành 'x' hoặc '-' */
    }

    .page-188bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #c0c0c0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Media Queries cho thiết bị di động */
    @media (max-width: 768px) {
      .page-188bet__main-title {
        font-size: 2em;
        padding-top: 100px; /* Dành chỗ cho header cố định trên di động */
      }

      .page-188bet__hero-section {
        padding-top: 100px; /* Dành chỗ cho header cố định trên di động */
      }

      .page-188bet__hero-title {
        font-size: 2em;
      }

      .page-188bet__hero-description {
        font-size: 1em;
      }

      .page-188bet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-188bet__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        bottom: 15px;
        right: 15px;
        max-width: 160px;
      }

      .page-188bet__section {
        padding: 40px 15px;
      }

      .page-188bet__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-188bet__text-block {
        font-size: 1em;
      }

      .page-188bet__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-188bet__game-card-image {
        height: 180px;
      }

      .page-188bet__game-card-title {
        font-size: 1.2em;
      }

      .page-188bet__game-card-description {
        font-size: 0.9em;
      }

      .page-188bet__game-card-button {
        padding: 8px 15px;
        font-size: 0.85em;
      }

      .page-188bet__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

      .page-188bet__provider-logo {
        max-height: 60px;
      }

      .page-188bet__guide-item {
        padding: 15px 20px;
      }

      .page-188bet__guide-item h3 {
        font-size: 1.3em;
      }

      .page-188bet__guide-item p {
        font-size: 0.95em;
      }

      .page-188bet__faq-section {
        padding: 40px 15px;
      }

      .page-188bet__faq-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-188bet__faq-question {
        padding: 15px 20px;
      }

      .page-188bet__faq-question h3 {
        font-size: 1.1em;
      }

      .page-188bet__faq-toggle {
        font-size: 1.5em;
      }

      .page-188bet__faq-answer {
        padding: 15px 20px !important;
      }
    }

    /* Đảm bảo hình ảnh phản hồi trên di động */
    .page-188bet img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-188bet__hero-image-container,
    .page-188bet__game-card-image-container,
    .page-188bet__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
  