
    :root {
      --page-thabets-primary-color: #e44d26; /* Cam đậm */
      --page-thabets-secondary-color: #f7a000; /* Vàng cam */
      --page-thabets-accent-color: #4CAF50; /* Xanh lá cây */
      --page-thabets-dark-text: #333;
      --page-thabets-light-text: #fff;
      --page-thabets-background-light: #f9f9f9;
      --page-thabets-background-dark: #2c3e50; /* Xám xanh đậm */
      --page-thabets-border-color: #ddd;
      --page-thabets-gradient-primary: linear-gradient(90deg, #e44d26, #f7a000);
      --page-thabets-gradient-secondary: linear-gradient(90deg, #4CAF50, #8bc34a);
    }

    .page-thabets {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-thabets-dark-text);
      background-color: var(--page-thabets-background-light);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-thabets-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    /* Banner Section */
    .page-thabets-hero {
      position: relative;
      width: 100%;
      min-height: 300px; /* Base height for mobile */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-thabets-light-text);
      overflow: hidden;
      padding: 2rem 1rem;
    }

    .page-thabets-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:banner:thabet,banner,hero]') no-repeat center center/cover;
      filter: brightness(0.7);
      z-index: -1;
    }

    .page-thabets-hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 1rem;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-thabets-hero h1 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--page-thabets-light-text);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-thabets-hero p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: var(--page-thabets-light-text);
    }

    .page-thabets-button {
      display: inline-block;
      padding: 0.8rem 1.8rem;
      background: var(--page-thabets-gradient-primary);
      color: var(--page-thabets-light-text);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-thabets-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      background: var(--page-thabets-gradient-secondary);
    }

    /* Floating Login Button */
    .page-thabets-floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-thabets-pulse 1.5s infinite;
    }

    @keyframes page-thabets-pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 77, 38, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(228, 77, 38, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 77, 38, 0); }
    }

    .page-thabets-floating-promo .page-thabets-button {
      padding: 1rem 1.5rem;
      font-size: 1.1rem;
    }

    /* Sections General */
    .page-thabets-section {
      padding: 3rem 1rem;
      margin-bottom: 1rem;
      background-color: var(--page-thabets-light-text);
      border-bottom: 1px solid var(--page-thabets-border-color);
    }

    .page-thabets-section:last-of-type {
      border-bottom: none;
    }

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

    .page-thabets-section-dark h2, .page-thabets-section-dark h3 {
      color: var(--page-thabets-light-text);
    }

    .page-thabets-section h2 {
      font-size: 2rem;
      color: var(--page-thabets-primary-color);
      text-align: center;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .page-thabets-section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: var(--page-thabets-gradient-primary);
      border-radius: 2px;
    }

    .page-thabets-section h3 {
      font-size: 1.5rem;
      color: var(--page-thabets-primary-color);
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .page-thabets-text-center {
      text-align: center;
    }

    /* Game Categories Grid */
    .page-thabets-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-thabets-game-card {
      background-color: var(--page-thabets-light-text);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-thabets-game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-thabets-game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-thabets-border-color);
    }

    .page-thabets-game-card-content {
      padding: 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-thabets-game-card h4 {
      font-size: 1.2rem;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--page-thabets-dark-text);
    }

    .page-thabets-game-card a {
      text-decoration: none;
      color: var(--page-thabets-primary-color);
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-thabets-game-card a:hover {
      color: var(--page-thabets-secondary-color);
    }

    /* List styles */
    .page-thabets-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
    }

    .page-thabets-list li {
      background-color: #e8f5e9; /* Light green background */
      margin-bottom: 0.8rem;
      padding: 1rem 1.5rem;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      color: var(--page-thabets-dark-text);
    }

    .page-thabets-list li::before {
      content: '✅';
      margin-right: 10px;
      font-size: 1.2rem;
      color: var(--page-thabets-accent-color);
    }

    /* Step-by-step guide */
    .page-thabets-step-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-thabets-step-card {
      background-color: var(--page-thabets-light-text);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .page-thabets-step-number {
      font-size: 2rem;
      font-weight: bold;
      color: var(--page-thabets-primary-color);
      flex-shrink: 0;
    }

    .page-thabets-step-content h4 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      color: var(--page-thabets-dark-text);
    }

    .page-thabets-step-content p {
      margin-bottom: 0;
      color: var(--page-thabets-dark-text);
    }

    /* FAQ Section */
    .page-thabets-faq-item {
      background-color: var(--page-thabets-light-text);
      border: 1px solid var(--page-thabets-border-color);
      border-radius: 8px;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .page-thabets-faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-thabets-dark-text);
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-thabets-faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-thabets-faq-question .page-thabets-icon {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .page-thabets-faq-question.active .page-thabets-icon {
      transform: rotate(180deg);
    }

    .page-thabets-faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out, padding 0.5s ease-out;
      background-color: #fff;
      color: var(--page-thabets-dark-text);
    }

    .page-thabets-faq-answer.active {
      max-height: 200px; /* Adjust based on expected content */
      padding: 1rem 1.5rem;
    }

    /* Floating Ad Menu */
    .page-thabets-floating-ad-menu {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 60px;
      background-color: var(--page-thabets-background-dark);
      border-radius: 0 10px 10px 0;
      box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0.5rem 0;
    }

    .page-thabets-floating-ad-menu a {
      display: block;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      color: var(--page-thabets-light-text);
      text-decoration: none;
      font-size: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-thabets-floating-ad-menu a:last-child {
      border-bottom: none;
    }

    .page-thabets-floating-ad-menu a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-thabets-hero {
        min-height: 450px;
        padding: 4rem 2rem;
      }
      .page-thabets-hero h1 {
        font-size: 3.5rem;
      }
      .page-thabets-hero p {
        font-size: 1.3rem;
      }
      .page-thabets-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
      }
      .page-thabets-section {
        padding: 4rem 2rem;
      }
      .page-thabets-section h2 {
        font-size: 2.8rem;
      }
      .page-thabets-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
      .page-thabets-step-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
      .page-thabets-floating-promo {
        bottom: 30px;
        right: 30px;
      }
      .page-thabets-floating-ad-menu {
        width: 80px;
      }
      .page-thabets-floating-ad-menu a {
        font-size: 1rem;
      }
    }

    @media (min-width: 1024px) {
      .page-thabets-hero {
        min-height: 550px;
      }
      .page-thabets-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }
  