
    /* Tổng thể */
    .page-88clb {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo khoảng cách cho footer */
    }

    /* Đảm bảo nội dung không bị che bởi header cố định */
    .page-88clb__hero-section {
      padding-top: 150px; /* Khoảng cách an toàn cho header cố định trên desktop */
    }

    @media (max-width: 768px) {
      .page-88clb__hero-section {
        padding-top: 120px; /* Khoảng cách an toàn cho header cố định trên mobile */
      }
    }

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

    .page-88clb__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-88clb__section-title {
      color: #FFD700;
      font-size: 3em;
      margin-bottom: 40px;
      text-transform: uppercase;
      font-weight: bold;
    }
    
    .page-88clb__section-subtitle {
      color: #FFFFFF;
      font-size: 1.5em;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-88clb__hero-section {
      position: relative;
      overflow: hidden;
      background-color: #1a1a1a;
      padding-bottom: 0; /* Không có padding dưới banner */
    }

    .page-88clb__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-88clb__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Đảm bảo hình ảnh không bị kéo giãn */
      margin: 0 auto;
      max-width: 100%;
    }
    
    .page-88clb__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 10;
      width: 90%;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      display: none; /* Ẩn nội dung hero nếu banner đã có chữ */
    }

    .page-88clb__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-88clb__hero-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    .page-88clb__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-88clb__cta-button:hover {
      background-color: #e0b800;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-88clb__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-88clb__pulse 2s infinite;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-88clb__floating-button:hover {
      background-color: #e0b800;
      transform: scale(1.05);
    }

    @keyframes page-88clb__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    /* Game Categories */
    .page-88clb__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88clb__game-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid #333;
    }

    .page-88clb__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }

    .page-88clb__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        border-bottom: 2px solid #FFD700;
    }
    .page-88clb__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-88clb__game-card-title {
      color: #FFD700;
      font-size: 1.5em;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-88clb__game-card-description {
      color: #CCCCCC;
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-88clb__game-card-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

    .page-88clb__game-card-link:hover {
      background-color: #e0b800;
    }

    /* Game Providers */
    .page-88clb__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-88clb__provider-item {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      width: 100%;
      max-width: 200px;
      border: 1px solid #333;
    }

    .page-88clb__provider-item:hover {
      transform: translateY(-5px);
    }
    
    .page-88clb__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px; /* Adjust height as needed */
    }

    .page-88clb__provider-logo {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
      display: block;
      max-width: 100%;
      height: auto;
    }

    .page-88clb__provider-name {
      color: #FFFFFF;
      margin-top: 10px;
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
    }

    /* Promotions */
    .page-88clb__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88clb__promo-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid #333;
    }

    .page-88clb__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }
    
    .page-88clb__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-88clb__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-88clb__promo-content {
      padding: 25px;
    }

    .page-88clb__promo-title {
      color: #FFD700;
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .page-88clb__promo-description {
      color: #CCCCCC;
      font-size: 1em;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-88clb__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-88clb__faq-item {
      background-color: #1a1a1a;
      border: 1px solid #333;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-88clb__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #222222;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88clb__faq-question:hover {
      background-color: #333333;
    }
    
    .page-88clb__faq-question h3 {
        margin: 0;
        pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
        color: #FFD700;
        font-size: 1em; /* Điều chỉnh kích thước font cho phù hợp với container */
    }

    .page-88clb__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
      transition: transform 0.3s ease;
    }

    .page-88clb__faq-item.active .page-88clb__faq-toggle {
      transform: rotate(45deg); /* Biến dấu '+' thành 'x' hoặc '-' */
    }

    .page-88clb__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #CCCCCC;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-88clb__faq-item.active .page-88clb__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* About Us */
    .page-88clb__about-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-88clb__about-content p {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #E0E0E0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .page-88clb__section-title {
        font-size: 2.5em;
      }
      .page-88clb__hero-title {
        font-size: 3em;
      }
    }

    @media (max-width: 768px) {
      .page-88clb__section {
        padding: 40px 0;
      }
      .page-88clb__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-88clb__section-subtitle {
        font-size: 1.2em;
      }
      .page-88clb__hero-title {
        font-size: 2.2em;
      }
      .page-88clb__hero-description {
        font-size: 1em;
      }
      .page-88clb__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-88clb__game-card-image {
        height: 180px;
      }
      .page-88clb__game-card-title {
        font-size: 1.3em;
      }
      .page-88clb__promo-image {
        height: 180px;
      }
      .page-88clb__promo-title {
        font-size: 1.4em;
      }
      .page-88clb__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-88clb__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-88clb__faq-item.active .page-88clb__faq-answer {
        padding: 15px 20px !important;
      }
      .page-88clb__floating-button {
        padding: 10px 20px;
        font-size: 0.95em;
        bottom: 15px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-88clb__section-title {
        font-size: 1.8em;
      }
      .page-88clb__hero-title {
        font-size: 1.8em;
      }
      .page-88clb__game-categories,
      .page-88clb__providers-grid,
      .page-88clb__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-88clb__game-card-image {
        height: 160px;
      }
      .page-88clb__promo-image {
        height: 160px;
      }
      .page-88clb__provider-item {
        max-width: none;
        width: 100%;
      }
    }

    /* Hình ảnh responsive */
    .page-88clb img {
        max-width: 100%;
        height: auto;
    }
    .page-88clb__hero-image-wrapper,
    .page-88clb__game-card-image-wrapper,
    .page-88clb__provider-logo-wrapper,
    .page-88clb__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-88clb img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-88clb__hero-image-wrapper,
        .page-88clb__game-card-image-wrapper,
        .page-88clb__provider-logo-wrapper,
        .page-88clb__promo-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  