
    /* Reset và cơ bản */
    .page-dangnhaphi88-body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f0f2f5;
      color: #333;
    }

    /* Vùng an toàn cho banner */
    .page-dangnhaphi88-hero-safe-zone {
      padding-top: 160px; /* Đảm bảo vùng an toàn 140px-180px */
      position: relative;
      overflow: hidden;
      background-color: #1a1a2e; /* Màu nền tối cho phần hero */
    }

    .page-dangnhaphi88-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      position: relative;
      z-index: 1; /* Đảm bảo nội dung chính nằm trên các yếu tố cố định */
    }

    /* Banner chính */
    .page-dangnhaphi88-hero-banner {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Giữ tỷ lệ hình ảnh */
      margin: 0 auto;
      max-height: 400px; /* Giới hạn chiều cao banner */
      border-radius: 8px;
    }

    .page-dangnhaphi88-hero-content {
      text-align: center;
      padding: 20px 0;
      color: #fff;
    }

    .page-dangnhaphi88-hero-content h1 {
      font-size: 2.2em;
      color: #ffcc00; /* Màu vàng nổi bật */
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-dangnhaphi88-hero-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-dangnhaphi88-btn-primary {
      display: inline-block;
      background-color: #e44d26; /* Màu cam đỏ */
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-dangnhaphi88-btn-primary:hover {
      background-color: #ff6f40;
      transform: translateY(-2px);
    }

    /* Các phần nội dung */
    .page-dangnhaphi88-section {
      background-color: #fff;
      padding: 30px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-dangnhaphi88-section h2 {
      text-align: center;
      color: #1a1a2e;
      font-size: 2em;
      margin-bottom: 30px;
      position: relative;
    }

    .page-dangnhaphi88-section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #e44d26;
      border-radius: 2px;
    }

    .page-dangnhaphi88-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-dangnhaphi88-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-dangnhaphi88-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-dangnhaphi88-card img {
      max-width: 80px;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-dangnhaphi88-card h3 {
      font-size: 1.1em;
      color: #1a1a2e;
      margin: 0;
    }

    .page-dangnhaphi88-card a {
      text-decoration: none;
      color: inherit;
    }

    .page-dangnhaphi88-game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      justify-items: center;
      align-items: center;
    }

    .page-dangnhaphi88-provider-logo {
      width: 100%;
      max-width: 120px;
      height: auto;
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }

    .page-dangnhaphi88-provider-logo:hover {
      filter: grayscale(0%);
    }

    /* Nút Đăng nhập nổi */
    .page-dangnhaphi88-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #007bff; /* Màu xanh nổi bật */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-dangnhaphi88-pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-dangnhaphi88-floating-button:hover {
      background-color: #0056b3;
      animation: none;
    }

    @keyframes page-dangnhaphi88-pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-dangnhaphi88-hero-safe-zone {
        padding-top: 120px; /* Điều chỉnh vùng an toàn cho mobile */
      }
      .page-dangnhaphi88-hero-content h1 {
        font-size: 1.8em;
      }
      .page-dangnhaphi88-hero-content p {
        font-size: 1em;
      }
      .page-dangnhaphi88-btn-primary {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-dangnhaphi88-section h2 {
        font-size: 1.7em;
      }
      .page-dangnhaphi88-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-dangnhaphi88-card {
        min-height: 120px;
      }
      .page-dangnhaphi88-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-dangnhaphi88-hero-safe-zone {
        padding-top: 100px;
      }
      .page-dangnhaphi88-hero-content h1 {
        font-size: 1.5em;
      }
      .page-dangnhaphi88-section h2 {
        font-size: 1.5em;
      }
      .page-dangnhaphi88-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-dangnhaphi88-card img {
        max-width: 60px;
      }
      .page-dangnhaphi88-card h3 {
        font-size: 0.9em;
      }
      .page-dangnhaphi88-floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  