
    :root {
      --page-789betvip__primary-color: #00e676; /* Green accent */
      --page-789betvip__secondary-color: #ffeb3b; /* Yellow accent */
      --page-789betvip__dark-background: #1a1a1a;
      --page-789betvip__light-text: #f5f5f5;
      --page-789betvip__grey-text: #cccccc;
      --page-789betvip__border-color: #333333;
    }

    .page-789betvip {
      background-color: #000000; /* Đen tuyền như yêu cầu */
      color: var(--page-789betvip__light-text);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
      box-sizing: border-box;
      min-height: 100vh;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-789betvip__section {
      width: 100%;
      max-width: 1200px;
      padding: 40px 20px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-789betvip__section--dark {
      background-color: var(--page-789betvip__dark-background);
      border-radius: 8px;
    }

    .page-789betvip__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Chiều cao cố định cho banner */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-789betvip__light-text);
      overflow: hidden;
      padding-top: 120px; /* Khoảng cách cho header cố định */
      box-sizing: border-box;
    }

    .page-789betvip__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* Đảm bảo hình ảnh được căn giữa và không bị kéo giãn */
      z-index: 1;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }
    .page-789betvip__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-789betvip__hero-content {
      position: relative;
      z-index: 2;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 20px 30px;
      border-radius: 10px;
      max-width: 90%;
      margin-top: 20px; /* Đảm bảo nội dung không bị dính vào banner */
    }

    .page-789betvip__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: var(--page-789betvip__primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789betvip__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 20px;
      color: var(--page-789betvip__grey-text);
    }

    .page-789betvip__button {
      display: inline-block;
      background-color: var(--page-789betvip__primary-color);
      color: var(--page-789betvip__dark-background);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-789betvip__button:hover {
      background-color: #00c853;
      transform: translateY(-2px);
    }

    .page-789betvip__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-789betvip__secondary-color);
      color: var(--page-789betvip__dark-background);
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      animation: pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-789betvip__floating-button:hover {
      background-color: #ffc107;
      animation: none;
    }

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

    .page-789betvip__heading {
      font-size: 2.2em;
      color: var(--page-789betvip__primary-color);
      text-align: center;
      margin-bottom: 30px;
      padding-bottom: 10px;
      position: relative;
    }

    .page-789betvip__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-789betvip__secondary-color);
      border-radius: 2px;
    }

    .page-789betvip__sub-heading {
      font-size: 1.8em;
      color: var(--page-789betvip__light-text);
      margin-top: 25px;
      margin-bottom: 15px;
      text-align: left;
      border-left: 5px solid var(--page-789betvip__primary-color);
      padding-left: 15px;
    }

    .page-789betvip__text {
      font-size: 1.1em;
      color: var(--page-789betvip__grey-text);
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-789betvip__highlight {
      color: var(--page-789betvip__primary-color);
      font-weight: bold;
    }

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

    .page-789betvip__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      position: relative;
      border: 1px solid var(--page-789betvip__border-color);
    }

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

    .page-789betvip__game-image-container {
      width: 100%;
      height: 180px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-789betvip__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    .page-789betvip__game-content {
      padding: 15px;
    }

    .page-789betvip__game-title {
      font-size: 1.4em;
      color: var(--page-789betvip__secondary-color);
      margin-bottom: 10px;
      text-decoration: none; /* For links inside card title */
      display: block;
    }
    .page-789betvip__game-title a {
      color: var(--page-789betvip__secondary-color);
      text-decoration: none;
    }
    .page-789betvip__game-title a:hover {
      text-decoration: underline;
    }

    .page-789betvip__game-description {
      font-size: 0.95em;
      color: var(--page-789betvip__grey-text);
      margin-bottom: 15px;
    }

    .page-789betvip__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-789betvip__provider-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.2s ease;
      border: 1px solid var(--page-789betvip__border-color);
    }

    .page-789betvip__provider-item:hover {
      transform: translateY(-3px);
      background-color: #3a3a3a;
    }

    .page-789betvip__provider-logo-container {
      width: 100%;
      height: 80px; /* Cố định chiều cao cho logo nhà cung cấp */
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-789betvip__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    .page-789betvip__provider-name {
      font-size: 1.1em;
      color: var(--page-789betvip__light-text);
      font-weight: bold;
    }

    .page-789betvip__faq-list {
      margin-top: 30px;
    }

    .page-789betvip__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid var(--page-789betvip__border-color);
    }

    .page-789betvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #333333;
      color: var(--page-789betvip__light-text);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-789betvip__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-789betvip__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      color: var(--page-789betvip__primary-color);
    }

    .page-789betvip__faq-item.active .page-789betvip__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-789betvip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-789betvip__grey-text);
      font-size: 1em;
    }

    .page-789betvip__faq-item.active .page-789betvip__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-789betvip__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-789betvip__list-item {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      color: var(--page-789betvip__grey-text);
    }

    .page-789betvip__list-item::before {
      content: '✔';
      color: var(--page-789betvip__primary-color);
      position: absolute;
      left: 0;
      top: 0;
      font-weight: bold;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789betvip__hero-section {
        height: 350px;
        padding-top: 100px; /* Mobile fixed header spacing */
      }

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

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

      .page-789betvip__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-789betvip__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.95em;
      }

      .page-789betvip__heading {
        font-size: 1.8em;
      }

      .page-789betvip__sub-heading {
        font-size: 1.5em;
      }

      .page-789betvip__text {
        font-size: 1em;
      }

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

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

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

      .page-789betvip__game-image,
      .page-789betvip__provider-logo,
      .page-789betvip__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-789betvip__game-image-container,
      .page-789betvip__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  