
    /* CSS for page-fabet */
    :root {
      --page-fabet-primary-color: #e44d26; /* Một màu cam đỏ rực rỡ, phù hợp cho các trang web cá cược */
      --page-fabet-secondary-color: #333;
      --page-fabet-accent-color: #fdd835; /* Màu vàng cho các điểm nhấn */
      --page-fabet-text-light: #fff;
      --page-fabet-text-dark: #333;
      --page-fabet-bg-dark: #1a1a1a;
      --page-fabet-bg-light: #f5f5f5;
      --page-fabet-border-radius: 8px;
      --page-fabet-shadow: rgba(0, 0, 0, 0.2);
    }

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

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

    .page-fabet-section {
      padding: 30px 0;
      text-align: center;
    }

    .page-fabet-section:nth-of-type(even) {
      background-color: #222;
    }

    .page-fabet-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:banner:fabet,hero,mobile_banner]') no-repeat center center/cover;
      padding: 60px 15px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 300px; /* Đảm bảo banner hiển thị */
    }

    .page-fabet-hero-content {
      position: relative;
      z-index: 2;
      color: var(--page-fabet-text-light);
      max-width: 800px;
    }

    .page-fabet-hero h1 {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-fabet-accent-color);
      text-shadow: 2px 2px 4px var(--page-fabet-shadow);
    }

    .page-fabet-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-fabet-btn {
      display: inline-block;
      background-color: var(--page-fabet-primary-color);
      color: var(--page-fabet-text-light);
      padding: 12px 25px;
      border-radius: var(--page-fabet-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 6px var(--page-fabet-shadow);
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-fabet-btn:hover {
      background-color: #ff6f42;
    }

    .page-fabet-link {
        color: var(--page-fabet-accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-fabet-link:hover {
        color: var(--page-fabet-primary-color);
    }

    .page-fabet-floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      padding: 15px 30px;
      font-size: 1.1em;
      animation: page-fabet-pulse 2s infinite;
    }

    @keyframes page-fabet-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-fabet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-fabet-card {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: var(--page-fabet-border-radius);
      box-shadow: 0 4px 8px var(--page-fabet-shadow);
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .page-fabet-card img {
      max-width: 100%;
      height: auto;
      border-radius: var(--page-fabet-border-radius);
      margin-bottom: 15px;
      object-fit: cover;
      width: 150px; /* Kích thước ảnh nhỏ, tập trung */
      height: 150px;
    }

    .page-fabet-card h3 {
      color: var(--page-fabet-accent-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-fabet-card p {
      color: #ccc;
      font-size: 0.95em;
    }

    .page-fabet-game-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }

    .page-fabet-game-list li {
      background-color: var(--page-fabet-primary-color);
      color: var(--page-fabet-text-light);
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: bold;
    }

    .page-fabet-advantages {
      text-align: left;
    }

    .page-fabet-advantages ul {
      list-style: none;
      padding: 0;
    }

    .page-fabet-advantages li {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: var(--page-fabet-border-radius);
      display: flex;
      align-items: center;
      box-shadow: 0 2px 4px var(--page-fabet-shadow);
    }

    .page-fabet-advantages li::before {
      content: '✔';
      color: var(--page-fabet-accent-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-fabet-faq .page-fabet-accordion-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      border-radius: var(--page-fabet-border-radius);
      box-shadow: 0 2px 4px var(--page-fabet-shadow);
    }

    .page-fabet-accordion-header {
      padding: 15px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-fabet-accent-color);
      font-size: 1.1em;
    }

    .page-fabet-accordion-header::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-fabet-accordion-header.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-fabet-accordion-content {
      padding: 0 15px 15px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      color: #ccc;
      text-align: left;
    }

    .page-fabet-accordion-content.active {
      max-height: 200px; /* Điều chỉnh khi cần */
    }

    .page-fabet h2 {
      font-size: 2em;
      color: var(--page-fabet-primary-color);
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px var(--page-fabet-shadow);
    }

    .page-fabet h3 {
      font-size: 1.5em;
      color: var(--page-fabet-accent-color);
      margin-bottom: 15px;
    }

    .page-fabet p {
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    /* Điều chỉnh responsive */
    @media (max-width: 768px) {
      .page-fabet-hero h1 {
        font-size: 2em;
      }
      .page-fabet-hero p {
        font-size: 1em;
      }
      .page-fabet-grid {
        grid-template-columns: 1fr;
      }
      .page-fabet-floating-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-fabet-hero {
        padding: 40px 10px;
      }
      .page-fabet-hero h1 {
        font-size: 1.8em;
      }
      .page-fabet-hero p {
        font-size: 0.9em;
      }
      .page-fabet-btn {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-fabet-card img {
        width: 120px;
        height: 120px;
      }
      .page-fabet-floating-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  