
    /* CSS cho trang 789bet com */
    :root {
      --page-789betcom-primary-bg: #1a1a2e; /* Tím/xanh đậm */
      --page-789betcom-secondary-bg: #0f3460; /* Xanh nhạt hơn một chút */
      --page-789betcom-accent-color: #e94560; /* Đỏ/hồng cho điểm nhấn */
      --page-789betcom-text-color: #e0e0e0; /* Xám nhạt cho văn bản */
      --page-789betcom-heading-color: #ffffff; /* Trắng cho tiêu đề */
      --page-789betcom-button-bg: #ff7f50; /* San hô cho nút */
      --page-789betcom-button-text: #ffffff;
      --page-789betcom-border-color: #3e3e5c;
    }

    .page-789betcom {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-789betcom-primary-bg);
      color: var(--page-789betcom-text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút cố định */
    }

    .page-789betcom .page-789betcom-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    .page-789betcom .page-789betcom-section {
      padding: 2rem 1rem;
      margin-bottom: 2rem;
      background-color: var(--page-789betcom-secondary-bg);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-789betcom .page-789betcom-section h2,
    .page-789betcom .page-789betcom-section h3 {
      color: var(--page-789betcom-heading-color);
      text-align: center;
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
    }
    
    .page-789betcom .page-789betcom-section h3 {
      font-size: 1.5rem;
    }

    .page-789betcom .page-789betcom-hero {
      text-align: center;
      padding: 0;
      background-color: var(--page-789betcom-primary-bg);
      margin-bottom: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .page-789betcom .page-789betcom-hero img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 0;
    }

    .page-789betcom .page-789betcom-hero-content {
        padding: 1rem;
        background-color: var(--page-789betcom-primary-bg);
        border-radius: 0 0 8px 8px;
        margin-top: -1px;
    }

    .page-789betcom .page-789betcom-hero h1 {
      color: var(--page-789betcom-heading-color);
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-789betcom .page-789betcom-hero p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto 2rem auto;
    }

    .page-789betcom .page-789betcom-button {
      display: inline-block;
      background-color: var(--page-789betcom-button-bg);
      color: var(--page-789betcom-button-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-789betcom .page-789betcom-button:hover {
      background-color: #ff6347; /* San hô đậm hơn */
      transform: translateY(-2px);
    }

    .page-789betcom .page-789betcom-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-789betcom-pulse 2s infinite;
    }

    @keyframes page-789betcom-pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 127, 80, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 127, 80, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 127, 80, 0); }
    }

    .page-789betcom .page-789betcom-games-grid,
    .page-789betcom .page-789betcom-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .page-789betcom .page-789betcom-game-card,
    .page-789betcom .page-789betcom-provider-card {
      background-color: var(--page-789betcom-primary-bg);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding: 1rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-789betcom .page-789betcom-game-card img,
    .page-789betcom .page-789betcom-provider-card img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 0.8rem;
    }

    .page-789betcom .page-789betcom-game-card h3,
    .page-789betcom .page-789betcom-provider-card h3 {
      font-size: 1.1rem;
      color: var(--page-789betcom-heading-color);
      margin-bottom: 0.5rem;
    }
    
    .page-789betcom .page-789betcom-game-card a,
    .page-789betcom .page-789betcom-provider-card a {
      text-decoration: none;
      color: var(--page-789betcom-heading-color);
    }

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

    .page-789betcom .page-789betcom-list li {
      background-color: var(--page-789betcom-primary-bg);
      padding: 1rem;
      margin-bottom: 0.8rem;
      border-left: 5px solid var(--page-789betcom-accent-color);
      border-radius: 4px;
      font-size: 1rem;
    }

    .page-789betcom .page-789betcom-list strong {
      color: var(--page-789betcom-accent-color);
    }

    .page-789betcom .page-789betcom-cta {
      text-align: center;
      margin-top: 3rem;
      padding: 2rem 1rem;
      background-color: var(--page-789betcom-accent-color);
      border-radius: 8px;
      color: var(--page-789betcom-heading-color);
    }

    .page-789betcom .page-789betcom-cta h2 {
      color: var(--page-789betcom-heading-color);
      margin-bottom: 1.5rem;
    }

    /* Điều chỉnh Responsive */
    @media (max-width: 768px) {
      .page-789betcom .page-789betcom-hero h1 {
        font-size: 2rem;
      }
      .page-789betcom .page-789betcom-section h2 {
        font-size: 1.5rem;
      }
      .page-789betcom .page-789betcom-games-grid,
      .page-789betcom .page-789betcom-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-789betcom .page-789betcom-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .page-789betcom .page-789betcom-hero h1 {
        font-size: 1.8rem;
      }
      .page-789betcom .page-789betcom-section h2 {
        font-size: 1.3rem;
      }
      .page-789betcom .page-789betcom-games-grid,
      .page-789betcom .page-789betcom-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  