
    /* CSS dành riêng cho trang hy88 */
    .page-hy88 {
      background-color: #000000;
      color: #FFFFFF;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

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

    .page-hy88__hero-section {
      text-align: center;
      padding: 150px 20px 50px; /* Thêm padding-top cho header cố định */
      background-color: #1a1a1a;
      position: relative;
    }

    .page-hy88__hero-banner {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-hy88__hero-logo {
      max-width: 250px; /* Tăng kích thước để dễ nhìn hơn */
      height: auto;
      display: block;
      margin: 0 auto 30px;
      padding: 10px;
      background-color: rgba(0, 0, 0, 0.7);
      border-radius: 15px;
    }

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

    .page-hy88__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

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

    .page-hy88__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-hy88__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-hy88__section-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-hy88__text-content {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      color: #e0e0e0;
      text-align: left;
    }
    
    .page-hy88__text-content p {
        margin-bottom: 1em;
    }

    .page-hy88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-hy88__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid #333333;
    }

    .page-hy88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-hy88__game-card-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      display: block;
    }

    .page-hy88__game-card-content {
      padding: 20px;
    }

    .page-hy88__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-hy88__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-hy88__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Điều chỉnh cho nhiều nhà cung cấp */
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-hy88__provider-logo {
      width: 100%;
      height: auto;
      max-width: 250px; /* Đảm bảo logo không quá lớn */
      display: block;
      margin: 0 auto;
      background-color: #222222;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      object-fit: contain; /* Đảm bảo logo vừa vặn mà không bị cắt */
    }

    .page-hy88__provider-logo:hover {
        transform: scale(1.05);
    }

    .page-hy88__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-hy88__faq-item {
      background-color: #1a1a1a;
      border: 1px solid #333333;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-hy88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 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-hy88__faq-question h3 {
        margin: 0;
        color: #FFD700;
        font-size: 1.2em; /* Đảm bảo kích thước font h3 khớp */
        pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-hy88__faq-question:hover {
      background-color: #333333;
    }

    .page-hy88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn toggle chặn sự kiện click */
    }

    .page-hy88__faq-item.active .page-hy88__faq-toggle {
      transform: rotate(45deg); /* Dấu cộng thành dấu trừ khi active */
    }
    
    .page-hy88__faq-item.active .page-hy88__faq-toggle::before {
        content: "−"; /* Thay đổi + thành - khi active */
    }

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

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

    .page-hy88__social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-hy88__social-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #FFD700;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: 1px solid #333333;
    }

    .page-hy88__social-item:hover {
      background-color: #333333;
      transform: translateY(-3px);
    }
    
    .page-hy88__social-item img {
        width: 200px; /* Đảm bảo kích thước tối thiểu cho hình ảnh */
        height: 200px;
        object-fit: contain;
    }

    .page-hy88__sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #FFD700;
      padding: 15px 20px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: none; /* Ẩn theo mặc định, hiển thị trên di động */
    }

    .page-hy88__sticky-cta-button {
      display: block;
      width: 100%;
      background-color: #000000;
      color: #FFD700;
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-hy88__sticky-cta-button:hover {
      background-color: #333333;
    }

    /* Điều chỉnh responsive */
    @media (max-width: 768px) {
      .page-hy88__container {
        padding: 15px;
      }

      .page-hy88__hero-section {
        padding: 120px 15px 40px; /* Điều chỉnh padding-top cho header cố định trên di động */
      }

      .page-hy88__hero-title {
        font-size: 2em;
      }

      .page-hy88__hero-description {
        font-size: 1em;
      }

      .page-hy88__section {
        padding: 40px 15px;
      }

      .page-hy88__section-title {
        font-size: 1.8em;
      }

      .page-hy88__game-grid {
        grid-template-columns: 1fr; /* Xếp chồng thẻ trên di động */
        gap: 20px;
      }

      .page-hy88__game-card-image {
        height: 180px;
      }

      .page-hy88__game-card-title {
        font-size: 1.3em;
      }

      .page-hy88__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Gọn hơn trên di động */
        gap: 15px;
      }

      .page-hy88__provider-logo {
        max-width: 150px; /* Logo nhỏ hơn trên di động */
        padding: 10px;
      }

      .page-hy88__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      
      .page-hy88__faq-question h3 {
          font-size: 1.1em;
      }

      .page-hy88__faq-answer {
        padding: 0 20px;
      }

      .page-hy88__faq-item.active .page-hy88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-hy88__social-grid {
        flex-direction: column;
        align-items: center;
      }

      .page-hy88__social-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }

      .page-hy88__sticky-cta {
        display: block; /* Hiển thị CTA cố định trên di động */
      }

      /* Yêu cầu responsive cho các mục danh sách */
      .page-hy88__game-grid > div,
      .page-hy88__provider-grid > img,
      .page-hy88__faq-list > div,
      .page-hy88__social-grid > a {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        /* Padding này sẽ được điều chỉnh bởi các lớp con nếu cần */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      /* Điều chỉnh padding cụ thể cho các thẻ con để tránh chồng chéo */
      .page-hy88__game-card, .page-hy88__faq-item {
          padding-left: 0 !important;
          padding-right: 0 !important;
      }
      .page-hy88__game-card-content, .page-hy88__faq-question, .page-hy88__faq-answer {
          padding-left: 20px !important;
          padding-right: 20px !important;
      }
    }
  