
    /* Reset và các cài đặt cơ bản cho trang b52club */
    .page-b52club {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: hsl(210, 10%, 20%); /* Màu chữ tối, đủ độ tương phản */
      background-color: hsl(0, 0%, 98%); /* Nền sáng */
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Ngăn chặn cuộn ngang */
    }

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

    /* Định dạng tiêu đề */
    .page-b52club h1, .page-b52club h2, .page-b52club h3 {
      color: hsl(210, 20%, 15%); /* Màu chữ đậm hơn cho tiêu đề */
      margin-bottom: 15px;
      text-align: center;
    }

    .page-b52club h1 {
      font-size: 2.5em;
      margin-top: 20px;
    }
    .page-b52club h2 {
      font-size: 2em;
      margin-top: 30px;
    }
    .page-b52club h3 {
      font-size: 1.5em;
      margin-top: 25px;
    }

    /* Đoạn văn bản */
    .page-b52club p {
      margin-bottom: 1em;
      text-align: justify;
    }

    /* Nút chung */
    .page-b52club .btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      cursor: pointer;
      white-space: nowrap; /* Ngăn không cho văn bản bị ngắt dòng */
    }

    .page-b52club .btn--primary {
      background-color: hsl(30, 100%, 40%); /* Màu cam đậm */
      color: hsl(0, 0%, 100%); /* Chữ trắng */
      border: 2px solid hsl(30, 100%, 40%);
    }

    .page-b52club .btn--primary:hover {
      background-color: hsl(30, 100%, 30%);
      transform: translateY(-2px);
    }

    .page-b52club .btn--secondary {
      background-color: hsl(120, 60%, 30%); /* Màu xanh lá đậm */
      color: hsl(0, 0%, 100%); /* Chữ trắng */
      border: 2px solid hsl(120, 60%, 30%);
    }

    .page-b52club .btn--secondary:hover {
      background-color: hsl(120, 60%, 20%);
      transform: translateY(-2px);
    }

    /* Phần Hero (banner chính) */
    .page-b52club__hero {
      text-align: center;
      padding: 40px 20px 60px;
      background: linear-gradient(135deg, hsl(30, 100%, 60%), hsl(45, 100%, 50%)); /* Gradient cam-vàng */
      color: hsl(0, 0%, 100%); /* Chữ trắng trên nền hero */
      position: relative;
      overflow: hidden;
    }

    .page-b52club__hero h1 {
      color: hsl(0, 0%, 100%);
      margin-bottom: 15px;
      font-size: 2.8em;
      line-height: 1.2;
    }

    .page-b52club__hero p {
      color: rgba(255, 255, 255, 0.9);
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 1.1em;
      text-align: center;
    }

    .page-b52club__hero-banner {
      width: 100%;
      max-width: 800px;
      height: auto;
      margin: 20px auto 30px;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      display: block; /* Đảm bảo căn giữa */
    }

    /* Nút nổi Đăng ký/Đăng nhập */
    .page-b52club__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      padding: 10px 20px;
      background-color: rgba(0, 0, 0, 0.7);
      border-radius: 50px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
      transition: transform 0.3s ease, opacity 0.3s ease; /* Thêm transition cho hiệu ứng ẩn/hiện */
    }

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

    /* Phần Tính năng nổi bật */
    .page-b52club__features {
      padding: 50px 20px;
      background-color: hsl(0, 0%, 95%);
      text-align: center;
    }

    .page-b52club__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-b52club__feature-item {
      background-color: hsl(0, 0%, 100%);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

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

    .page-b52club__feature-item img {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-b52club__feature-item h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: hsl(210, 20%, 15%);
    }

    /* Phần Danh mục trò chơi */
    .page-b52club__games {
      padding: 50px 20px;
      text-align: center;
    }

    .page-b52club__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-b52club__game-item {
      background-color: hsl(0, 0%, 100%);
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      text-decoration: none;
      color: hsl(210, 10%, 20%);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-b52club__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-b52club__game-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .page-b52club__game-item h3 {
      font-size: 1.1em;
      margin: 0;
      color: hsl(210, 20%, 15%);
      text-align: center;
    }

    /* Phần Khuyến mãi */
    .page-b52club__promotions {
      background-color: hsl(30, 100%, 95%); /* Nền cam nhạt */
      padding: 50px 20px;
      text-align: center;
    }

    .page-b52club__promotion-card {
      background-color: hsl(0, 0%, 100%);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      max-width: 700px;
      margin: 30px auto;
    }

    .page-b52club__promotion-card h3 {
      color: hsl(30, 100%, 40%); /* Màu cam đậm */
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-b52club__promotion-card p {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: hsl(210, 10%, 30%);
    }

    /* Phần Giới thiệu */
    .page-b52club__about {
      padding: 50px 20px;
      background-color: hsl(0, 0%, 98%);
      text-align: center;
    }

    .page-b52club__about .container {
      max-width: 900px;
    }

    .page-b52club__about p {
      text-align: left;
    }

    /* Điều chỉnh responsive cho thiết bị di động */
    @media (max-width: 768px) {
      .page-b52club h1 {
        font-size: 2em;
      }
      .page-b52club h2 {
        font-size: 1.7em;
      }
      .page-b52club h3 {
        font-size: 1.3em;
      }
      .page-b52club__hero {
        padding: 30px 15px 50px;
      }
      .page-b52club__hero h1 {
        font-size: 2.2em;
      }
      .page-b52club__hero p {
        font-size: 1em;
      }
      .page-b52club__floating-buttons {
        width: calc(100% - 40px);
        bottom: 15px;
        gap: 10px;
      }
      .page-b52club__floating-buttons .btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.95em;
      }
      .page-b52club__features-grid,
      .page-b52club__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-b52club__feature-item {
        padding: 20px;
      }
      .page-b52club__game-item img {
        width: 80px;
        height: 80px;
      }
      .page-b52club__game-item h3 {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-b52club h1 {
        font-size: 1.8em;
      }
      .page-b52club h2 {
        font-size: 1.5em;
      }
      .page-b52club__floating-buttons {
        bottom: 10px;
        padding: 8px 15px;
      }
      .page-b52club__floating-buttons .btn {
        font-size: 0.9em;
        padding: 8px 12px;
      }
      .page-b52club__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  