
    /* CSS Styling cho trang tha bet */
    :root {
      --page-thabet-primary-color: #e44d26; /* Đỏ/Cam rực rỡ */
      --page-thabet-secondary-color: #2c3e50; /* Xanh đậm/Xám */
      --page-thabet-accent-color: #f39c12; /* Cam cho điểm nhấn */
      --page-thabet-text-color: #ecf0f1; /* Xám nhạt cho văn bản */
      --page-thabet-dark-text-color: #34495e; /* Văn bản tối hơn */
      --page-thabet-background-dark: #1a1a1a; /* Nền tối */
      --page-thabet-background-light: #2c2c2c; /* Nền tối hơn một chút */
    }

    .page-thabet {
      font-family: 'Arial', sans-serif;
      color: var(--page-thabet-text-color);
      background-color: var(--page-thabet-background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-thabet-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: var(--page-thabet-background-light);
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-thabet-section-dark {
        background-color: var(--page-thabet-background-dark);
        color: var(--page-thabet-text-color);
    }

    .page-thabet-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-thabet h1, .page-thabet h2, .page-thabet h3 {
      color: var(--page-thabet-primary-color);
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .page-thabet h1 {
      font-size: 2.2em;
      margin-top: 20px;
      color: var(--page-thabet-accent-color);
    }

    .page-thabet h2 {
      font-size: 1.8em;
      border-bottom: 2px solid var(--page-thabet-accent-color);
      padding-bottom: 10px;
      margin-top: 30px;
    }

    .page-thabet h3 {
      font-size: 1.4em;
      color: var(--page-thabet-primary-color);
    }

    .page-thabet p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-thabet strong {
      color: var(--page-thabet-accent-color);
    }

    .page-thabet-banner {
      position: relative;
      width: 100%;
      height: 200px; /* Điều chỉnh cho thiết bị di động */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: var(--page-thabet-secondary-color);
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-thabet-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .page-thabet-banner-content {
      position: relative;
      z-index: 2;
      color: white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      padding: 15px;
    }

    .page-thabet-banner-content h1 {
      color: white; /* Ghi đè cho banner */
      font-size: 2.5em;
      margin-bottom: 10px;
    }

    .page-thabet-banner-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-thabet-btn-promo {
      display: inline-block;
      background-color: var(--page-thabet-accent-color);
      color: var(--page-thabet-background-dark);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-thabet-btn-promo:hover {
      background-color: #e67e22;
    }

    .page-thabet-floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-thabet-primary-color);
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: page-thabet-pulse 2s infinite;
      transition: background-color 0.3s ease;
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
      text-align: center;
    }

    .page-thabet-floating-btn:hover {
      background-color: #c0392b;
    }

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

    .page-thabet-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Điều chỉnh cho di động */
      gap: 15px;
      margin-top: 20px;
    }

    .page-thabet-game-card {
      background-color: var(--page-thabet-background-dark);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      padding: 10px;
    }

    .page-thabet-game-card:hover {
      transform: translateY(-5px);
    }

    .page-thabet-game-card img {
      width: 100%;
      height: 100px; /* Chiều cao cố định để nhất quán */
      object-fit: contain; /* Đảm bảo hình ảnh hiển thị đầy đủ */
      border-bottom: 1px solid var(--page-thabet-secondary-color);
      margin-bottom: 10px;
    }

    .page-thabet-game-card h3 {
      font-size: 1em;
      margin-bottom: 10px;
      color: var(--page-thabet-text-color);
    }
    .page-thabet-game-card h3 a {
        color: var(--page-thabet-text-color);
        text-decoration: none;
    }
    .page-thabet-game-card h3 a:hover {
        color: var(--page-thabet-accent-color);
    }

    .page-thabet-game-card .page-thabet-btn-play {
      display: block;
      background-color: var(--page-thabet-primary-color);
      color: white;
      padding: 8px 15px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }

    .page-thabet-game-card .page-thabet-btn-play:hover {
      background-color: #c0392b;
    }

    .page-thabet-list {
      list-style-type: none;
      padding-left: 0;
    }

    .page-thabet-list li {
      background-color: var(--page-thabet-background-dark);
      margin-bottom: 10px;
      padding: 10px 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .page-thabet-list li::before {
      content: '⚡️';
      margin-right: 10px;
      color: var(--page-thabet-accent-color);
      font-weight: bold;
    }

    .page-thabet-highlight-box {
        background-color: var(--page-thabet-primary-color);
        color: white;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        margin-top: 30px;
        font-size: 1.1em;
        font-weight: bold;
    }

    .page-thabet-highlight-box a {
        color: var(--page-thabet-accent-color);
        text-decoration: underline;
    }
    .page-thabet-highlight-box a:hover {
        color: white;
    }


    /* Điều chỉnh phản hồi */
    @media (min-width: 768px) {
      .page-thabet-banner {
        height: 300px;
      }
      .page-thabet-banner-content h1 {
        font-size: 3.5em;
      }
      .page-thabet-banner-content p {
        font-size: 1.3em;
      }
      .page-thabet h1 {
        font-size: 2.8em;
      }
      .page-thabet h2 {
        font-size: 2.2em;
      }
      .page-thabet h3 {
        font-size: 1.6em;
      }
      .page-thabet-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-thabet-floating-btn {
        bottom: 30px;
        right: 30px;
        padding: 18px 30px;
        font-size: 1.2em;
      }
    }

    @media (min-width: 1024px) {
      .page-thabet-banner {
        height: 400px;
      }
      .page-thabet-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
  