
    /* Reset và cơ bản */
    .page-789bets {
      font-family: 'Arial', sans-serif;
      color: #FFFFFF; /* Màu chữ trắng */
      background-color: #000000; /* Nền đen */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Tiêu đề và văn bản */
    .page-789bets h1, .page-789bets h2, .page-789bets h3, .page-789bets h4 {
      color: #FFD700; /* Màu vàng cho tiêu đề */
      margin-bottom: 15px;
      text-align: center;
    }
    .page-789bets h1 {
      font-size: 2.5em;
      margin-top: 20px;
    }
    .page-789bets h2 {
      font-size: 2em;
      margin-top: 30px;
    }
    .page-789bets h3 {
      font-size: 1.5em;
      margin-top: 25px;
    }
    .page-789bets p {
      margin-bottom: 15px;
      text-align: center;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Phần chung */
    .page-789bets__section {
      padding: 40px 20px;
      text-align: center;
      position: relative;
    }
    .page-789bets__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-789bets__hero-section {
      padding-top: 140px; /* An toàn cho header cố định */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Đảm bảo chiều cao tối thiểu cho hero */
    }
    .page-789bets__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Hiệu ứng ánh sáng vàng */
    }
    .page-789bets__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6); /* Nền mờ để chữ nổi bật */
      border-radius: 10px;
      margin-top: 20px;
      max-width: 90%;
    }
    .page-789bets__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    .page-789bets__hero-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 20px;
    }
    .page-789bets__hero-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    .page-789bets__hero-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Nút Đăng Nhập/Đăng Ký Nổi */
    .page-789bets__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-789bets__pulse 2s infinite;
      white-space: nowrap; /* Đảm bảo nút không bị ngắt dòng */
    }
    .page-789bets__floating-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-5px);
    }
    @keyframes page-789bets__pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
      }
    }

    /* Lưới sản phẩm/dịch vụ */
    .page-789bets__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center;
    }
    .page-789bets__grid-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      max-width: 350px; /* Giới hạn chiều rộng cho item */
      width: 100%; /* Đảm bảo item chiếm hết chiều rộng có thể */
    }
    .page-789bets__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }
    .page-789bets__grid-item-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho ảnh sản phẩm */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #FFD700;
    }
    .page-789bets__grid-item-title {
      color: #FFD700;
      font-size: 1.3em;
      margin: 15px 10px 10px;
    }
    .page-789bets__grid-item-title a {
      color: #FFD700;
      text-decoration: none;
    }
    .page-789bets__grid-item-title a:hover {
      text-decoration: underline;
    }
    .page-789bets__grid-item-description {
      color: #CCCCCC;
      font-size: 0.9em;
      padding: 0 15px;
    }
    .page-789bets__grid-item-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 15px;
      transition: background-color 0.3s ease;
    }
    .page-789bets__grid-item-link:hover {
      background-color: #e6c200;
    }

    /* Nhà cung cấp trò chơi */
    .page-789bets__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }
    .page-789bets__provider-logo {
      width: 100%;
      max-width: 150px; /* Giới hạn kích thước logo */
      height: auto;
      object-fit: contain;
      background-color: #FFFFFF; /* Nền trắng cho logo */
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
      transition: transform 0.3s ease;
    }
    .page-789bets__provider-logo:hover {
      transform: scale(1.05);
    }

    /* Bảng xếp hạng */
    .page-789bets__ranking-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-789bets__ranking-item {
      background-color: #1a1a1a;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-left: 5px solid #FFD700;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    .page-789bets__ranking-item:nth-child(1) { border-left-color: #FFD700; } /* Vàng cho hạng 1 */
    .page-789bets__ranking-item:nth-child(2) { border-left-color: #C0C0C0; } /* Bạc cho hạng 2 */
    .page-789bets__ranking-item:nth-child(3) { border-left-color: #CD7F32; } /* Đồng cho hạng 3 */
    .page-789bets__ranking-name {
      font-weight: bold;
      color: #FFFFFF;
      font-size: 1.1em;
    }
    .page-789bets__ranking-score {
      color: #FFD700;
      font-weight: bold;
    }

    /* Phương thức thanh toán */
    .page-789bets__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-789bets__payment-item {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      max-width: 120px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .page-789bets__payment-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }
    .page-789bets__payment-logo {
      max-width: 80px;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-789bets__faq-section {
      text-align: left;
    }
    .page-789bets__faq-list {
      max-width: 800px;
      margin: 30px auto 0;
      padding: 0;
      list-style: none;
    }
    .page-789bets__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      border: 1px solid #333;
    }
    .page-789bets__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #222;
      color: #FFD700;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-789bets__faq-question h3 {
      margin: 0;
      color: #FFD700;
      text-align: left;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }
    .page-789bets__faq-question:hover {
      background-color: #333;
    }
    .page-789bets__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn icon chặn sự kiện click */
      transition: transform 0.3s ease;
    }
    .page-789bets__faq-item.active .page-789bets__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }
    .page-789bets__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #1a1a1a;
    }
    .page-789bets__faq-item.active .page-789bets__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px !important;
      opacity: 1;
    }
    .page-789bets__faq-answer p {
        text-align: left;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-789bets__hero-section {
        padding-top: 100px; /* An toàn cho header cố định trên mobile */
        min-height: 300px;
      }
      .page-789bets__hero-title {
        font-size: 2.2em;
      }
      .page-789bets__hero-description {
        font-size: 1em;
      }
      .page-789bets__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-789bets h1 {
        font-size: 2em;
      }
      .page-789bets h2 {
        font-size: 1.7em;
      }
      .page-789bets h3 {
        font-size: 1.3em;
      }
      .page-789bets__section {
        padding: 30px 15px;
      }
      .page-789bets__floating-button {
        padding: 12px 25px;
        font-size: 1em;
        bottom: 15px;
      }
      .page-789bets__grid {
        grid-template-columns: 1fr;
      }
      .page-789bets__grid-item-image {
        height: 180px;
      }
      .page-789bets__provider-logo {
        max-width: 100px;
      }
      .page-789bets__payment-logo {
        max-width: 60px;
      }
      .page-789bets__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-789bets__faq-answer {
        padding: 0 15px;
      }
      .page-789bets__faq-item.active .page-789bets__faq-answer {
        padding: 15px !important;
      }
      /* Responsive image optimization */
      .page-789bets img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789bets__grid-item, .page-789bets__provider-logo, .page-789bets__payment-item {
        width: 100%;
        max-width: unset;
      }
      .page-789bets__grid-item-image, .page-789bets__provider-logo, .page-789bets__payment-logo {
        box-sizing: border-box;
      }
    }

    @media (max-width: 480px) {
      .page-789bets__hero-title {
        font-size: 1.8em;
      }
      .page-789bets__hero-description {
        font-size: 0.9em;
      }
      .page-789bets__floating-button {
        font-size: 0.9em;
        padding: 10px 20px;
      }
    }
  