
    /* CSS dành riêng cho trang 789bet */
    :root {
      --page-789bet-primary-color: #e44d26; /* Cam đỏ */
      --page-789bet-secondary-color: #ffb74d; /* Vàng cam */
      --page-789bet-dark-bg: #1a1a1a; /* Nền tối */
      --page-789bet-light-text: #ffffff; /* Chữ trắng */
      --page-789bet-accent-color: #4CAF50; /* Xanh lá */
      --page-789bet-hover-color: #f57c00; /* Cam đậm hơn */
      --page-789bet-border-color: #333333; /* Xám viền */
      --page-789bet-card-bg: #282828; /* Nền thẻ tối */
    }

    .page-789bet {
      font-family: 'Arial', sans-serif;
      color: var(--page-789bet-light-text);
      background-color: var(--page-789bet-dark-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-789bet a {
      color: var(--page-789bet-primary-color);
      text-decoration: none;
    }

    .page-789bet a:hover {
      text-decoration: underline;
      color: var(--page-789bet-hover-color);
    }

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

    /* Hero Section */
    .page-789bet-hero {
      text-align: center;
      padding: 20px 0;
      background-color: #000; /* Đảm bảo banner nổi bật */
      overflow: hidden; /* Ngăn chặn hình ảnh tràn ra ngoài */
    }

    .page-789bet-hero-image {
      width: 100%;
      max-width: 800px; /* Giới hạn kích thước banner */
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-789bet-hero h1 {
      font-size: 2.5em;
      color: var(--page-789bet-secondary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .page-789bet-hero p {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #ccc;
    }

    .page-789bet-btn {
      display: inline-block;
      background-color: var(--page-789bet-primary-color);
      color: var(--page-789bet-light-text);
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin: 5px;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-789bet-btn:hover {
      background-color: var(--page-789bet-hover-color);
      color: var(--page-789bet-light-text); /* Giữ màu chữ khi hover */
      text-decoration: none;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-789bet-floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 10px 0;
      display: flex;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7);
      z-index: 1000;
      border-top: 1px solid var(--page-789bet-border-color);
    }

    .page-789bet-floating-buttons .page-789bet-btn {
      flex: 1;
      margin: 0 5px;
      font-size: 0.9em;
      padding: 10px 15px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      background-color: var(--page-789bet-accent-color); /* Màu khác để nổi bật */
    }
    .page-789bet-floating-buttons .page-789bet-btn.login {
        background-color: var(--page-789bet-primary-color);
    }

    /* Sections */
    .page-789bet-section {
      padding: 40px 0;
      text-align: center;
    }

    .page-789bet-section h2 {
      font-size: 2em;
      color: var(--page-789bet-secondary-color);
      margin-bottom: 30px;
      position: relative;
    }

    .page-789bet-section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-789bet-primary-color);
    }

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

    .page-789bet-card {
      background-color: var(--page-789bet-card-bg);
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

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

    .page-789bet-card img {
      width: 100%;
      max-width: 120px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789bet-card h3 {
      font-size: 1.1em;
      color: var(--page-789bet-light-text);
      margin-bottom: 5px;
    }

    .page-789bet-card h3 a {
      color: var(--page-789bet-light-text);
    }
    .page-789bet-card h3 a:hover {
      color: var(--page-789bet-primary-color);
    }

    .page-789bet-text-content p {
      max-width: 800px;
      margin: 15px auto;
      color: #ccc;
      font-size: 1em;
    }

    .page-789bet-list {
      list-style: none;
      padding: 0;
      max-width: 700px;
      margin: 20px auto;
      text-align: left;
    }

    .page-789bet-list li {
      background-color: var(--page-789bet-card-bg);
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .page-789bet-list li::before {
      content: '✔';
      color: var(--page-789bet-accent-color);
      margin-right: 10px;
      font-weight: bold;
    }

    .page-789bet-game-providers .page-789bet-grid {
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Nhỏ hơn cho logo */
    }

    .page-789bet-game-providers .page-789bet-card img {
      max-width: 80px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789bet-hero h1 {
        font-size: 2em;
      }
      .page-789bet-hero p {
        font-size: 0.95em;
      }
      .page-789bet-section h2 {
        font-size: 1.8em;
      }
      .page-789bet-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-789bet-game-providers .page-789bet-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
      }
      .page-789bet-floating-buttons .page-789bet-btn {
        font-size: 0.8em;
        padding: 8px 10px;
      }
    }

    @media (max-width: 480px) {
      .page-789bet-hero h1 {
        font-size: 1.8em;
      }
      .page-789bet-section h2 {
        font-size: 1.6em;
      }
      .page-789bet-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-789bet-card img {
        max-width: 100px;
      }
      .page-789bet-game-providers .page-789bet-card img {
        max-width: 50px;
      }
      .page-789bet-floating-buttons {
        flex-direction: column;
        padding: 8px 0;
      }
      .page-789bet-floating-buttons .page-789bet-btn {
        width: calc(100% - 20px);
        margin: 5px 10px;
        font-size: 0.9em;
      }
    }
  