
    /* Tổng quan */
    .page-fun88new {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Để tránh nút nổi bị che */
    }

    /* Đảm bảo độ tương phản */
    .page-fun88new h1, .page-fun88new h2, .page-fun88new h3 {
      color: #ffd700; /* Vàng kim cho tiêu đề */
      text-align: center;
      margin-bottom: 20px;
    }
    .page-fun88new p, .page-fun88new ul li, .page-fun88new a {
      color: #f0f0f0;
    }
    .page-fun88new a {
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .page-fun88new a:hover {
      color: #ffd700;
    }

    /* Hero Section */
    .page-fun88new__hero {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-bottom: 30px;
      padding-top: 0;
      text-align: center;
    }

    .page-fun88new__banner {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      max-width: 100%;
      box-shadow: none;
    }

    .page-fun88new__hero-content {
      padding: 20px 15px;
      max-width: 960px;
      margin: 0 auto;
      background-color: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      margin-top: -20px; /* Slightly overlap with banner for visual flow */
      position: relative;
      z-index: 10;
    }

    .page-fun88new__hero-content h1 {
      color: #ffd700;
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-fun88new__hero-content p {
      font-size: 1em;
      line-height: 1.4;
      color: #f0f0f0;
      margin-bottom: 20px;
    }

    /* Các nút chung */
    .page-fun88new__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ff4500; /* Cam đỏ */
      color: #fff;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 15px;
    }

    .page-fun88new__button:hover {
      background-color: #e03c00;
      transform: translateY(-2px);
    }

    /* Nút đăng ký/đăng nhập nổi */
    .page-fun88new__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7);
      z-index: 1000;
    }

    .page-fun88new__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      color: #fff;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-fun88new__floating-button--register {
      background-color: #ff4500; /* Cam đỏ */
    }

    .page-fun88new__floating-button--login {
      background-color: #0056b3; /* Xanh dương đậm */
    }

    .page-fun88new__floating-button:hover {
      transform: translateY(-2px);
    }

    .page-fun88new__floating-button--register:hover {
      background-color: #e03c00;
    }

    .page-fun88new__floating-button--login:hover {
      background-color: #003d80; /* Xanh dương đậm hơn khi hover */
    }

    /* Các phần nội dung */
    .page-fun88new__section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-fun88new__section h2 {
      font-size: 1.6em;
      margin-bottom: 15px;
      color: #ffd700;
    }

    .page-fun88new__section h3 {
      font-size: 1.3em;
      margin-top: 20px;
      margin-bottom: 10px;
      color: #ffd700;
    }

    .page-fun88new__section p {
      margin-bottom: 10px;
    }

    .page-fun88new__section ul {
      list-style-type: disc;
      margin-left: 20px;
      padding-left: 0;
    }

    .page-fun88new__section ul li {
      margin-bottom: 8px;
    }

    /* Product Display */
    .page-fun88new__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      padding: 0 15px;
      max-width: 960px;
      margin: 0 auto 30px auto;
    }

    .page-fun88new__product-item {
      background-color: #3a3a3a;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-fun88new__product-item:hover {
      transform: translateY(-5px);
    }

    .page-fun88new__product-item img {
      width: 100%;
      height: 120px; /* Chiều cao cố định cho ảnh sản phẩm */
      object-fit: cover;
      display: block;
    }

    .page-fun88new__product-item p {
      padding: 10px;
      font-weight: bold;
      color: #f0f0f0;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-fun88new__hero-content h1 {
        font-size: 2.5em;
      }
      .page-fun88new__hero-content p {
        font-size: 1.2em;
      }
      .page-fun88new__hero-content {
        padding: 30px;
        margin-top: -40px;
      }
      .page-fun88new__floating-buttons {
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        max-width: 400px; /* Giới hạn chiều rộng trên desktop */
        border-radius: 8px;
        padding: 15px 20px;
      }
      .page-fun88new__section {
        padding: 30px;
      }
      .page-fun88new__section h2 {
        font-size: 2em;
      }
      .page-fun88new__product-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-fun88new__product-item img {
        height: 150px;
      }
    }
  