
    /* Tổng quan */
    .page-new88 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị nút nổi che khuất ở dưới */
    }

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

    .page-new88__heading-primary {
      color: #FFD700; /* Vàng */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-new88__heading-secondary {
      color: #FFD700; /* Vàng */
      text-align: center;
      margin-bottom: 25px;
      font-size: 2em;
      font-weight: bold;
    }

    .page-new88__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-new88__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 160px; /* An toàn cho header cố định */
      padding-bottom: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-new88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-new88__hero-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }

    .page-new88__hero-content {
      text-align: center;
      max-width: 800px;
      padding: 0 15px;
    }

    .page-new88__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

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

    .page-new88__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000000; /* Đen */
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Floating Promo Button */
    .page-new88__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700; /* Vàng */
      color: #000000; /* Đen */
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-new88__pulse 2s infinite;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-new88__floating-promo-button:hover {
      background-color: #e6c200;
      transform: scale(1.05);
    }

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

    /* Game Categories */
    .page-new88__game-categories {
      padding: 60px 0;
    }

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

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

    .page-new88__game-card:hover {
      transform: translateY(-10px);
    }

    .page-new88__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-new88__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-new88__game-title {
      font-size: 1.4em;
      color: #FFD700;
      padding: 15px 10px;
    }

    /* Promotions Section */
    .page-new88__promotions {
      padding: 60px 0;
      background-color: #0d0d0d;
    }

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

    .page-new88__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

    .page-new88__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-new88__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px;
    }

    .page-new88__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-new88__promo-content {
      padding: 20px;
    }

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

    .page-new88__promo-description {
      color: #CCCCCC;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-new88__promo-link {
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-new88__promo-link:hover {
      color: #FFFFFF;
    }

    /* About New88 Section */
    .page-new88__about-new88 {
      padding: 60px 0;
    }

    .page-new88__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .page-new88__about-text {
      font-size: 1.1em;
      color: #FFFFFF;
      text-align: justify;
    }

    .page-new88__about-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 10px;
    }

    .page-new88__about-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    /* Game Providers Section */
    .page-new88__game-providers {
      padding: 60px 0;
      background-color: #0d0d0d;
    }

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

    .page-new88__provider-logo-wrapper {
      width: 100%;
      max-width: 200px; /* Max width for logos */
      overflow: hidden;
      box-sizing: border-box;
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-new88__provider-logo-wrapper:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    }

    .page-new88__provider-logo {
      width: 100%;
      height: auto;
      max-height: 80px; /* Max height for logos */
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-new88__faq-section {
      padding: 60px 0;
    }

    .page-new88__faq-list {
      margin-top: 40px;
    }

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

    .page-new88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2a2a2a;
      color: #FFD700;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-new88__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-new88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from interfering with click event */
      color: #FFD700; /* Ensure heading color */
    }

    .page-new88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
      color: #FFD700; /* Ensure toggle color */
    }

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

    .page-new88__faq-item.active .page-new88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-new88__faq-item.active .page-new88__faq-question {
      background-color: #3a3a3a;
    }

    .page-new88__faq-item.active .page-new88__faq-toggle {
      content: '−';
    }

    /* Social Media Section */
    .page-new88__social-media {
      padding: 60px 0;
      text-align: center;
      background-color: #0d0d0d;
    }

    .page-new88__social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    .page-new88__social-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #FFD700;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .page-new88__social-link:hover {
      color: #FFFFFF;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-new88__hero-section {
        padding-top: 120px; /* Adjust for mobile header */
        padding-bottom: 30px;
      }

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

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

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

      .page-new88__heading-primary {
        font-size: 2em;
      }

      .page-new88__heading-secondary {
        font-size: 1.7em;
      }

      .page-new88__game-grid,
      .page-new88__promo-grid,
      .page-new88__providers-grid {
        grid-template-columns: 1fr;
      }

      .page-new88__game-card,
      .page-new88__promo-card {
        margin: 0 auto;
        max-width: 350px;
      }

      .page-new88__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }

      .page-new88__about-content {
        flex-direction: column;
      }

      .page-new88__faq-question {
        padding: 15px 20px;
      }

      .page-new88__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      /* Force image responsiveness */
      .page-new88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-new88__hero-image-wrapper,
      .page-new88__game-image-wrapper,
      .page-new88__promo-image-wrapper,
      .page-new88__about-image-wrapper,
      .page-new88__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  