
    /* Tổng quan */
    .page-f8beta2com {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-f8beta2com__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-f8beta2com__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-f8beta2com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-f8beta2com__text-white {
      color: #FFFFFF;
    }

    .page-f8beta2com__text-yellow {
      color: #FFD700;
    }

    /* Hero Section */
    .page-f8beta2com__hero-section {
      position: relative;
      background-color: #000000;
      padding-top: 120px; /* An toàn cho header cố định */
      text-align: center;
      overflow: hidden;
    }

    .page-f8beta2com__hero-image {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      max-width: 1200px; /* Giữ tỷ lệ gốc, không kéo dãn */
      box-sizing: border-box;
      border-radius: 10px;
    }

    .page-f8beta2com__hero-content {
      padding: 40px 15px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-f8beta2com__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-f8beta2com__hero-subtitle {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    /* Nút Đăng nhập/Khuyến mãi nổi */
    .page-f8beta2com__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
    }

    .page-f8beta2com__floating-button:hover {
      transform: translateY(-5px) scale(1.05);
      background-color: #e6c200;
    }

    /* Giới thiệu */
    .page-f8beta2com__about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-f8beta2com__about-content p {
      margin-bottom: 20px;
      color: #E0E0E0;
    }

    /* Danh mục trò chơi */
    .page-f8beta2com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

    .page-f8beta2com__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-f8beta2com__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

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

    .page-f8beta2com__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-f8beta2com__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      text-decoration: none;
      display: block;
    }

    .page-f8beta2com__game-card-title:hover {
      text-decoration: underline;
    }

    .page-f8beta2com__game-card-description {
      color: #E0E0E0;
      font-size: 0.9em;
      margin-bottom: 15px;
    }

    .page-f8beta2com__game-card-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Đẩy nút xuống dưới */
    }

    .page-f8beta2com__game-card-link:hover {
      background-color: #e6c200;
    }

    /* Ưu đãi & Khuyến mãi */
    .page-f8beta2com__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      margin: 0 auto;
      max-width: 600px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-f8beta2com__promo-card h3 {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-f8beta2com__promo-card p {
      color: #E0E0E0;
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-f8beta2com__promo-button {
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-f8beta2com__promo-button:hover {
      background-color: #e6c200;
    }

    /* Nhà cung cấp trò chơi */
    .page-f8beta2com__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 20px 0;
    }

    .page-f8beta2com__provider-logo {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-f8beta2com__provider-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

    .page-f8beta2com__provider-logo img {
      max-width: 100%;
      max-height: 70px; /* Giới hạn chiều cao logo */
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Nhà cái hàng đầu */
    .page-f8beta2com__ranking-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
    }

    .page-f8beta2com__ranking-item {
      background-color: #1a1a1a;
      padding: 15px 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-f8beta2com__ranking-item:hover {
      transform: translateX(5px);
      background-color: #2a2a2a;
    }

    .page-f8beta2com__ranking-name {
      font-size: 1.2em;
      color: #FFD700;
      font-weight: bold;
    }

    .page-f8beta2com__ranking-badge {
      background-color: #FFD700;
      color: #000000;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-f8beta2com__faq-section {
      background-color: #000000;
      padding: 60px 0;
      text-align: center;
    }

    .page-f8beta2com__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-f8beta2com__faq-item {
      margin-bottom: 15px;
      border: 1px solid #333;
      border-radius: 8px;
      overflow: hidden;
      background-color: #1a1a1a;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-f8beta2com__faq-question {
      background-color: #222;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
      font-weight: bold;
      color: #FFD700;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-f8beta2com__faq-question:hover {
      background-color: #333;
    }

    .page-f8beta2com__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.1em;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-f8beta2com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
    }

    .page-f8beta2com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #1a1a1a;
      color: #E0E0E0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-f8beta2com__faq-answer p {
      margin: 0 0 15px 0;
      padding-bottom: 5px;
    }

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

    .page-f8beta2com__faq-item.active .page-f8beta2com__faq-toggle {
      transform: rotate(45deg); /* Biến '+' thành 'x' hoặc '-' */
    }
    .page-f8beta2com__faq-item.active .page-f8beta2com__faq-toggle::before {
      content: '−'; /* Thay đổi dấu cộng thành dấu trừ */
    }
    .page-f8beta2com__faq-toggle::before {
      content: '+';
    }


    /* Call to Action */
    .page-f8beta2com__cta-section {
      background-color: #1a1a1a;
      padding: 80px 0;
    }

    .page-f8beta2com__cta-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-f8beta2com__cta-description {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-f8beta2com__cta-button {
      background-color: #FFD700;
      color: #000000;
      padding: 15px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-f8beta2com__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-f8beta2com__hero-section {
        padding-top: 100px; /* An toàn cho header cố định trên mobile */
      }

      .page-f8beta2com__hero-title {
        font-size: 2.2em;
      }

      .page-f8beta2com__hero-subtitle {
        font-size: 1em;
      }

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

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

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

      .page-f8beta2com__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-f8beta2com__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-f8beta2com__ranking-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }

      .page-f8beta2com__ranking-name {
        margin-bottom: 5px;
      }

      .page-f8beta2com__faq-question,
      .page-f8beta2com__faq-question h3 {
        font-size: 1em;
      }

      .page-f8beta2com__faq-answer {
        padding: 0 15px;
      }

      .page-f8beta2com__faq-item.active .page-f8beta2com__faq-answer {
        padding: 15px !important;
      }

      .page-f8beta2com__cta-title {
        font-size: 1.8em;
      }

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

    /* Mobile image responsive optimization */
    .page-f8beta2com img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    .page-f8beta2com__game-card-image,
    .page-f8beta2com__provider-logo img,
    .page-f8beta2com__hero-image {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-f8beta2com img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-f8beta2com__game-card-image,
      .page-f8beta2com__provider-logo img,
      .page-f8beta2com__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-f8beta2com__hero-section,
      .page-f8beta2com__game-card,
      .page-f8beta2com__provider-logo {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }

  