
    /* Tổng quan */
    .page-new8 {
      font-family: 'Arial', sans-serif;
      color: #333; /* Đảm bảo độ tương phản */
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

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

    /* Tiêu đề chính */
    .page-new8-main-heading {
      text-align: center;
      color: #0056b3; /* Màu xanh đậm */
      margin-bottom: 20px;
      font-size: 2.2em;
      font-weight: bold;
      padding-top: 20px;
    }
    @media (min-width: 768px) {
      .page-new8-main-heading {
        font-size: 2.8em;
      }
    }

    /* Nút đăng nhập nổi */
    .page-new8-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4500; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease;
      white-space: nowrap; /* Ngăn nút bị ngắt dòng */
    }
    .page-new8-floating-button:hover {
      background-color: #e63900;
    }
    @media (max-width: 480px) {
      .page-new8-floating-button {
        padding: 12px 25px;
        font-size: 1em;
        bottom: 15px;
      }
    }

    /* Phần Hero Banner */
    .page-new8-hero {
      text-align: center;
      margin-bottom: 30px;
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .page-new8-hero img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Căn giữa ảnh */
      border-radius: 8px;
    }
    .page-new8-hero-content {
      margin-top: 20px;
    }
    .page-new8-hero h1 {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }
    .page-new8-hero p {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
    }
    .page-new8-hero .page-new8-btn {
      display: inline-block;
      background-color: #28a745; /* Màu xanh lá cây */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-new8-hero .page-new8-btn:hover {
      background-color: #218838;
    }
    @media (max-width: 768px) {
      .page-new8-hero h1 {
        font-size: 2em;
      }
      .page-new8-hero p {
        font-size: 1em;
      }
      .page-new8-hero .page-new8-btn {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }

    /* Các phần chung */
    .page-new8-section {
      background-color: #fff;
      padding: 25px 20px;
      margin-bottom: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .page-new8-section h2 {
      color: #0056b3;
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
    }
    .page-new8-section h3 {
      color: #007bff; /* Màu xanh dương */
      font-size: 1.5em;
      margin-top: 20px;
      margin-bottom: 10px;
    }
    .page-new8-section p {
      margin-bottom: 15px;
      color: #444;
    }
    .page-new8-section ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 15px;
      color: #444;
    }
    .page-new8-section ul li {
      margin-bottom: 8px;
    }

    /* Lưới sản phẩm/game */
    .page-new8-game-grid,
    .page-new8-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .page-new8-game-card,
    .page-new8-provider-card {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-height: 180px; /* Đảm bảo chiều cao tối thiểu */
    }
    .page-new8-game-card:hover,
    .page-new8-provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .page-new8-game-card img,
    .page-new8-provider-card img {
      max-width: 100%;
      height: auto;
      max-height: 100px; /* Giới hạn chiều cao hình ảnh */
      object-fit: contain; /* Đảm bảo hình ảnh không bị méo */
      margin-bottom: 10px;
    }
    .page-new8-game-card h3,
    .page-new8-provider-card h3 {
      font-size: 1.2em;
      color: #0056b3;
      margin: 0;
    }
    .page-new8-game-card a,
    .page-new8-provider-card a {
      text-decoration: none;
      color: inherit;
      display: block; /* Đảm bảo toàn bộ thẻ có thể nhấp */
    }

    /* Lưới khuyến mãi */
    .page-new8-promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .page-new8-promo-card {
      background-color: #e0f7fa; /* Màu nền nhẹ */
      border: 1px solid #b2ebf2;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .page-new8-promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
    .page-new8-promo-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }
    .page-new8-promo-card-content {
      padding: 15px;
    }
    .page-new8-promo-card-content h3 {
      font-size: 1.4em;
      color: #00796b; /* Màu xanh ngọc */
      margin-top: 0;
      margin-bottom: 10px;
    }
    .page-new8-promo-card-content p {
      font-size: 0.95em;
      color: #333;
      margin-bottom: 15px;
    }
    .page-new8-promo-card-content .page-new8-btn {
      display: inline-block;
      background-color: #00bcd4; /* Màu xanh lam */
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }
    .page-new8-promo-card-content .page-new8-btn:hover {
      background-color: #0097a7;
    }

    /* Tin tức / Bài viết */
    .page-new8-article-list {
      list-style: none;
      padding: 0;
    }
    .page-new8-article-list li {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 15px;
      transition: box-shadow 0.2s ease;
    }
    .page-new8-article-list li:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .page-new8-article-list li h3 {
      margin-top: 0;
      font-size: 1.3em;
    }
    .page-new8-article-list li h3 a {
      color: #0056b3;
      text-decoration: none;
    }
    .page-new8-article-list li h3 a:hover {
      text-decoration: underline;
    }
    .page-new8-article-list li p {
      font-size: 0.9em;
      color: #666;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-new8-game-grid,
      .page-new8-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-new8-promo-grid {
        grid-template-columns: 1fr;
      }
      .page-new8-section h2 {
        font-size: 1.8em;
      }
      .page-new8-section h3 {
        font-size: 1.3em;
      }
    }
    @media (max-width: 480px) {
      .page-new8-game-grid,
      .page-new8-provider-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột trên di động nhỏ */
      }
      .page-new8-game-card,
      .page-new8-provider-card {
        min-height: 150px;
        padding: 10px;
      }
      .page-new8-game-card h3,
      .page-new8-provider-card h3 {
        font-size: 1.1em;
      }
      .page-new8-section {
        padding: 15px;
      }
    }
  