
    /* Tổng quan */
    .page-788bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      overflow-x: hidden;
    }

    /* Đảm bảo nội dung không bị che bởi header cố định */
    .page-788bet__hero-section {
      padding-top: 120px; /* Cho desktop */
      position: relative;
      background-color: #0d1a26;
      text-align: center;
      color: #fff;
    }

    @media (max-width: 768px) {
      .page-788bet__hero-section {
        padding-top: 100px; /* Cho mobile */
      }
    }

    .page-788bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-788bet__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-788bet__section--dark {
      background-color: #0d1a26;
      color: #fff;
    }

    .page-788bet__title {
      font-size: 2.8em;
      color: #007bff; /* Màu xanh nổi bật */
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .page-788bet__title--light {
      color: #fff;
    }

    .page-788bet__subtitle {
      font-size: 2em;
      color: #007bff;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-788bet__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Hero Section */
    .page-788bet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .page-788bet__hero-content {
      padding: 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-788bet__hero-heading {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #ffcc00; /* Màu vàng nổi bật */
    }

    .page-788bet__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-788bet__cta-button {
      display: inline-block;
      background-color: #ff4500; /* Màu cam đỏ */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-788bet__cta-button:hover {
      background-color: #e03d00;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-788bet__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffcc00; /* Màu vàng */
      color: #0d1a26;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: pulse 2s infinite;
    }

    .page-788bet__floating-login-button:hover {
      background-color: #e6b800;
      transform: scale(1.05);
    }

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

    /* Game Categories */
    .page-788bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Đảm bảo các sản phẩm được căn giữa */
    }

    .page-788bet__game-card {
      background-color: #f0f8ff; /* Light blue background */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-788bet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-788bet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid #007bff;
      margin-bottom: 15px;
    }

    .page-788bet__game-card-title {
      font-size: 1.5em;
      color: #0d1a26;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-788bet__game-card-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
    }

    /* Game Providers */
    .page-788bet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-788bet__provider-logo {
      width: 100%;
      max-width: 150px;
      height: auto;
      object-fit: contain;
      padding: 10px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .page-788bet__provider-logo:hover {
      transform: scale(1.05);
    }

    /* Payment Methods */
    .page-788bet__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-788bet__payment-method-item {
      background-color: #e9ecef;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      color: #333;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-788bet__payment-method-item:hover {
      background-color: #dee2e6;
    }

    /* FAQ Section */
    .page-788bet__faq-list {
      margin-top: 30px;
    }

    .page-788bet__faq-item {
      background-color: #f0f8ff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-788bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-788bet__faq-question:hover {
      background-color: #0056b3;
    }

    .page-788bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: #fff;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-788bet__faq-toggle {
      font-size: 1.8em;
      margin-left: 15px;
      line-height: 1;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
      transition: transform 0.3s ease;
    }

    .page-788bet__faq-item.active .page-788bet__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu '+' thành 'x' hoặc '-' */
    }

    .page-788bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #333;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-788bet__title {
        font-size: 2.2em;
      }

      .page-788bet__subtitle {
        font-size: 1.6em;
      }

      .page-788bet__hero-heading {
        font-size: 2.5em;
      }

      .page-788bet__hero-description {
        font-size: 1.1em;
      }

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

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

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

      .page-788bet__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-788bet__faq-answer {
        padding: 0 20px;
      }

      .page-788bet__faq-item.active .page-788bet__faq-answer {
        padding: 15px 20px !important;
      }
    }

    /* All images responsive */
    .page-788bet img {
      max-width: 100% !important;
      height: auto !important;
      object-fit: cover; /* default to cover, can be overridden by specific classes */
    }

    .page-788bet__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      text-align: center; /* Center images within their containers */
    }

    /* Specific object-fit for different image types */
    .page-788bet__hero-image {
        object-fit: contain; /* Ensure hero image is not cropped */
        max-height: 500px; /* Limit height for large hero images */
    }
    .page-788bet__game-card-image {
        object-fit: cover; /* Game cards can be cropped */
        height: 200px;
    }
    .page-788bet__provider-logo {
        object-fit: contain; /* Provider logos should not be cropped */
        height: 80px; /* Fixed height for logos */
        width: auto; /* Maintain aspect ratio */
    }

    @media (max-width: 768px) {
      .page-788bet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-788bet__image-container {
        width: 100% !important;
        max-width: 100% !important;
      }
    }
  