
    /* Tổng quan */
    .page-linknew88 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng cho nền đen */
      background-color: #0a0a0a; /* Nền đen */
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị che bởi nút nổi */
    }

    .page-linknew88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-linknew88__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-linknew88__section--dark {
      background-color: #1a1a1a;
    }

    .page-linknew88__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Màu vàng nổi bật cho tiêu đề */
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-linknew88__section-subtitle {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-linknew88__hero-section {
      position: relative;
      background-color: #000;
      padding-top: 120px; /* Khoảng cách cho header cố định */
      text-align: center;
      overflow: hidden;
    }

    .page-linknew88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Giữ tỷ lệ hình ảnh */
      border-radius: 8px;
    }

    .page-linknew88__hero-content {
      padding: 30px 15px;
      position: relative; /* Để nội dung hiển thị trên ảnh nếu cần */
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-linknew88__hero-title {
      font-size: 3em;
      color: #fff;
      margin-bottom: 15px;
      line-height: 1.2;
    }

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

    .page-linknew88__hero-text-link {
      color: #ffd700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-linknew88__hero-text-link:hover {
      color: #fff;
    }

    .page-linknew88__cta-button {
      display: inline-block;
      background-color: #ff4500; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-linknew88__cta-button:hover {
      background-color: #e03e00;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-linknew88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #008000; /* Màu xanh lá cây nổi bật */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-linknew88__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-linknew88__floating-button:hover {
      background-color: #006400;
      transform: scale(1.05);
      animation-play-state: paused;
    }

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

    /* Game Categories */
    .page-linknew88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-linknew88__game-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-linknew88__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-linknew88__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #2a2a2a;
    }

    .page-linknew88__game-card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover; /* Đảm bảo hình ảnh phủ đầy và không bị méo */
      transition: transform 0.3s ease;
    }

    .page-linknew88__game-card:hover .page-linknew88__game-card-image {
      transform: scale(1.05);
    }

    .page-linknew88__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-linknew88__game-card-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 10px;
      text-decoration: none;
      font-weight: bold;
    }

    .page-linknew88__game-card-title a {
      color: #ffd700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-linknew88__game-card-title a:hover {
      color: #fff;
    }

    .page-linknew88__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-linknew88__game-card-button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .page-linknew88__game-card-button:hover {
      background-color: #e03e00;
    }

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

    .page-linknew88__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px; /* Đảm bảo chiều cao tối thiểu */
    }

    .page-linknew88__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-linknew88__provider-logo {
      width: 100%;
      max-width: 120px; /* Kích thước tối đa cho logo nhà cung cấp */
      height: auto;
      object-fit: contain;
    }

    /* Promotions */
    .page-linknew88__promo-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      margin-bottom: 30px;
      text-align: center;
    }

    .page-linknew88__promo-title {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-linknew88__promo-description {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 25px;
    }

    /* Why Choose Us */
    .page-linknew88__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-linknew88__feature-item {
      background-color: #1a1a1a;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-linknew88__feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-linknew88__feature-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-linknew88__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* FAQ Section */
    .page-linknew88__faq-section {
      background-color: #0a0a0a;
      padding: 60px 0;
    }

    .page-linknew88__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-linknew88__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .page-linknew88__faq-item:hover {
      background-color: #2a2a2a;
    }

    .page-linknew88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #ffd700;
      font-weight: bold;
      position: relative;
    }

    .page-linknew88__faq-question h3 {
      margin: 0;
      color: #ffd700;
      font-size: 1.1em;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-linknew88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên biểu tượng */
      color: #ff4500;
    }

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

    .page-linknew88__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: #ccc;
      font-size: 0.95em;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-linknew88__hero-section {
        padding-top: 100px; /* Điều chỉnh cho mobile */
      }

      .page-linknew88__section {
        padding: 30px 0;
      }

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

      .page-linknew88__hero-title {
        font-size: 2.2em;
      }

      .page-linknew88__hero-text {
        font-size: 1em;
      }

      .page-linknew88__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-linknew88__game-grid,
      .page-linknew88__providers-grid,
      .page-linknew88__feature-grid {
        grid-template-columns: 1fr;
      }

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

      .page-linknew88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.95em;
      }

      .page-linknew88__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-linknew88__faq-question h3 {
        font-size: 1em;
      }

      .page-linknew88__faq-answer {
        padding: 0 20px;
        font-size: 0.9em;
      }

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

      /* Responsive image optimization */
      .page-linknew88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-linknew88 .page-linknew88__game-card-image-wrapper,
      .page-linknew88 .page-linknew88__provider-item,
      .page-linknew88 .page-linknew88__feature-icon {
        width: 100% !important; /* Đảm bảo các container hình ảnh cũng đầy đủ chiều rộng */
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  