
    /* Tổng quan */
    .page-789betvip {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

    /* Các phần chung */
    .page-789betvip__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

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

    .page-789betvip__title {
      font-size: 2.5em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-789betvip__subtitle {
      font-size: 1.8em;
      color: #333;
      text-align: center;
      margin-bottom: 25px;
      font-weight: 600;
    }

    .page-789betvip__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    /* Hero Section */
    .page-789betvip__hero-section {
      position: relative;
      background-color: #1a2a6c; /* Màu nền tối */
      color: #fff;
      text-align: center;
      padding-top: 100px; /* Đảm bảo không bị che bởi header cố định */
      padding-bottom: 50px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Chiều cao tối thiểu */
    }

    .page-789betvip__hero-image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }

    .page-789betvip__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6; /* Làm mờ ảnh nền */
      max-width: 100%;
    }

    .page-789betvip__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Nền cho nội dung để dễ đọc */
      border-radius: 10px;
    }

    .page-789betvip__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #ffcc00; /* Màu vàng nổi bật */
    }

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

    .page-789betvip__hero-button {
      display: inline-block;
      background-color: #ff4d4d; /* Màu đỏ nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-789betvip__hero-button:hover {
      background-color: #e60000;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-789betvip__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ffcc00; /* Màu vàng */
      color: #333;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-789betvip__pulse 2s infinite;
      border: none; /* Make it a button, not a link */
      text-decoration: none; /* Ensure no underline if it were a link */
    }

    .page-789betvip__floating-button:hover {
      background-color: #e6b800;
      transform: scale(1.05);
    }

    @keyframes page-789betvip__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories */
    .page-789betvip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-789betvip__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-789betvip__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-789betvip__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-789betvip__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
    }

    .page-789betvip__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-789betvip__game-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-789betvip__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Why Choose Section */
    .page-789betvip__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-789betvip__feature-item {
      background-color: #eaf6ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
    }

    .page-789betvip__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
    }

    .page-789betvip__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-789betvip__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Guide Section */
    .page-789betvip__guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-789betvip__guide-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .page-789betvip__guide-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-789betvip__guide-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-789betvip__guide-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
    }

    .page-789betvip__guide-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-789betvip__guide-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-789betvip__guide-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-789betvip__guide-button {
      display: inline-block;
      background-color: #28a745;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      margin-top: 15px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-789betvip__guide-button:hover {
      background-color: #218838;
    }

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

    .page-789betvip__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-789betvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #eaf6ff;
      color: #007bff;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-789betvip__faq-question:hover {
      background-color: #d0e9ff;
    }

    .page-789betvip__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: #007bff;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-789betvip__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-789betvip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      background-color: #fff;
    }

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

    .page-789betvip__faq-item.active .page-789betvip__faq-toggle {
      content: "−";
    }

    /* CTA Section */
    .page-789betvip__cta-section {
      text-align: center;
      background-color: #1a2a6c;
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 30px;
    }

    .page-789betvip__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #ffcc00;
      font-weight: 700;
    }

    .page-789betvip__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-789betvip__cta-button {
      display: inline-block;
      background-color: #ff4d4d;
      color: #fff;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-789betvip__cta-button:hover {
      background-color: #e60000;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789betvip__hero-section {
        padding-top: 80px; /* Điều chỉnh cho di động */
        min-height: 300px;
      }
      .page-789betvip__hero-title {
        font-size: 2.2em;
      }
      .page-789betvip__hero-description {
        font-size: 1em;
      }
      .page-789betvip__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-789betvip__title {
        font-size: 2em;
      }
      .page-789betvip__subtitle {
        font-size: 1.5em;
      }
      .page-789betvip__text {
        font-size: 1em;
      }
      .page-789betvip__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.95em;
      }

      .page-789betvip__game-grid,
      .page-789betvip__feature-list,
      .page-789betvip__guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-789betvip__section {
        padding: 30px 15px;
      }

      .page-789betvip__cta-title {
        font-size: 1.8em;
      }
      .page-789betvip__cta-description {
        font-size: 1em;
      }
      .page-789betvip__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-789betvip__game-image,
      .page-789betvip__feature-icon,
      .page-789betvip__guide-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789betvip__game-image-wrapper,
      .page-789betvip__guide-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  