
    /* CSS cho trang typhu88 đăng nhập tài khoản */
    :root {
      --page-typhu88-primary-color: #e44d26; /* Cam đỏ */
      --page-typhu88-secondary-color: #ffb300; /* Vàng hổ phách */
      --page-typhu88-background-dark: #1a1a1a; /* Nền tối */
      --page-typhu88-background-light: #f5f5f5; /* Nền sáng */
      --page-typhu88-text-dark: #333; /* Chữ tối */
      --page-typhu88-text-light: #ffffff; /* Chữ sáng */
      --page-typhu88-border-color: #ddd;
    }

    .page-typhu88 {
      font-family: 'Arial', sans-serif;
      color: var(--page-typhu88-text-dark);
      background-color: var(--page-typhu88-background-light);
      line-height: 1.6;
      padding: 0;
      margin: 0;
    }

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

    /* Tiêu đề */
    .page-typhu88-hero {
      text-align: center;
      padding: 20px 0;
      background-color: var(--page-typhu88-background-dark);
      color: var(--page-typhu88-text-light);
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .page-typhu88-hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover; /* Đảm bảo hình ảnh được căn giữa và bao phủ */
      max-height: 300px; /* Giới hạn chiều cao banner trên di động */
    }

    .page-typhu88-hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
      text-align: center;
    }

    .page-typhu88-hero h1 {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--page-typhu88-secondary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-typhu88-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-typhu88-text-light);
    }

    /* Nút đăng ký/đăng nhập nổi */
    .page-typhu88-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-typhu88-btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      white-space: nowrap; /* Ngăn nút bị ngắt dòng */
    }

    .page-typhu88-btn-register {
      background-color: var(--page-typhu88-primary-color);
      color: var(--page-typhu88-text-light);
      border: 2px solid var(--page-typhu88-primary-color);
    }

    .page-typhu88-btn-register:hover {
      background-color: #c0392b; /* Màu tối hơn */
      border-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-typhu88-btn-login {
      background-color: var(--page-typhu88-secondary-color);
      color: var(--page-typhu88-text-dark);
      border: 2px solid var(--page-typhu88-secondary-color);
    }

    .page-typhu88-btn-login:hover {
      background-color: #e6a000; /* Màu tối hơn */
      border-color: #e6a000;
      transform: translateY(-2px);
    }

    /* Phần giới thiệu */
    .page-typhu88-section {
      background-color: var(--page-typhu88-text-light);
      padding: 30px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      color: var(--page-typhu88-text-dark);
    }

    .page-typhu88-section h2 {
      color: var(--page-typhu88-primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-typhu88-section h3 {
      color: var(--page-typhu88-secondary-color);
      font-size: 1.4em;
      margin-top: 25px;
      margin-bottom: 10px;
    }

    .page-typhu88-section p {
      margin-bottom: 15px;
    }

    .page-typhu88-section ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-typhu88-section li {
      margin-bottom: 8px;
    }

    /* Sản phẩm/Trò chơi */
    .page-typhu88-products {
      text-align: center;
    }

    .page-typhu88-product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
      justify-items: center; /* Căn giữa các item trong grid */
    }

    .page-typhu88-product-item {
      background-color: var(--page-typhu88-background-light);
      border: 1px solid var(--page-typhu88-border-color);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

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

    .page-typhu88-product-item img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
      object-fit: cover;
      aspect-ratio: 16/9; /* Tỷ lệ khung hình phổ biến cho game */
    }

    .page-typhu88-product-item h4 {
      font-size: 1.1em;
      color: var(--page-typhu88-primary-color);
      margin-bottom: 5px;
    }

    .page-typhu88-product-item p {
      font-size: 0.9em;
      color: #666;
    }

    /* Cảnh báo và trách nhiệm */
    .page-typhu88-disclaimer {
      background-color: #fff3cd; /* Màu vàng nhạt */
      color: #856404; /* Màu chữ nâu */
      padding: 15px 20px;
      border-radius: 8px;
      border: 1px solid #ffeeba;
      margin-top: 20px;
      font-size: 0.9em;
    }

    .page-typhu88-disclaimer p {
      margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-typhu88-hero h1 {
        font-size: 1.8em;
      }

      .page-typhu88-hero p {
        font-size: 1em;
      }

      .page-typhu88-section h2 {
        font-size: 1.5em;
      }

      .page-typhu88-btn {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-typhu88-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }

    @media (max-width: 480px) {
      .page-typhu88-hero h1 {
        font-size: 1.5em;
      }

      .page-typhu88-hero-banner {
        max-height: 200px; /* Nhỏ hơn nữa trên màn hình rất nhỏ */
      }

      .page-typhu88-floating-buttons {
        flex-direction: column;
        gap: 10px;
        width: 90%;
        bottom: 10px;
      }

      .page-typhu88-btn {
        width: 100%;
        padding: 10px 15px;
      }

      .page-typhu88-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  