
    /* Tổng quan */
    .page-new88new88 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Các phần chung */
    .page-new88new88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

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

    .page-new88new88__section-title {
      color: #FFD700;
      font-size: 2.5em;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
      text-transform: uppercase;
    }

    .page-new88new88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #FFD700;
    }

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

    /* Hero Section */
    .page-new88new88__hero-section {
      position: relative;
      padding-top: 150px; /* An toàn cho header cố định */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 600px; /* Đảm bảo đủ không gian cho banner */
      background-color: #000000;
    }

    .page-new88new88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    .page-new88new88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }

    .page-new88new88__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      text-align: center;
      padding: 0 20px;
    }

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

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

    .page-new88new88__hero-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

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

    /* Floating Login Button */
    .page-new88new88__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-new88new88__pulse 2s infinite;
      text-align: center;
      line-height: 1.2;
    }

    .page-new88new88__floating-login-button span {
      display: block;
      font-size: 0.8em;
      margin-top: 3px;
    }

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

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

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

    .page-new88new88__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: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-new88new88__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }

    .page-new88new88__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

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

    .page-new88new88__game-card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      text-decoration: none;
      display: block;
    }

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

    .page-new88new88__game-card-title a:hover {
      color: #FFFFFF;
    }

    .page-new88new88__game-card-description {
      font-size: 0.9em;
      color: #CCCCCC;
    }

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

    .page-new88new88__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;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      max-width: 160px;
      box-sizing: border-box;
    }

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

    .page-new88new88__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

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

    .page-new88new88__promo-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, background-color 0.3s ease;
      border: 1px solid #333;
    }

    .page-new88new88__promo-card:hover {
      transform: translateY(-8px);
      background-color: #222;
      border-color: #FFD700;
    }

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

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

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

    .page-new88new88__promo-button:hover {
      background-color: #e6c200;
    }

    /* Hướng Dẫn */
    .page-new88new88__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-new88new88__guide-step {
      background-color: #1a1a1a;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      transition: transform 0.3s ease;
    }

    .page-new88new88__guide-step:hover {
      transform: translateY(-5px);
    }

    .page-new88new88__step-number {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 15px;
    }

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

    .page-new88new88__step-description {
      color: #CCCCCC;
    }

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

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

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

    .page-new88new88__faq-question:hover {
      background-color: #333;
    }

    .page-new88new88__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-new88new88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-new88new88__faq-item.active .page-new88new88__faq-toggle {
      transform: rotate(45deg);
    }

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

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

    /* Payment Methods */
    .page-new88new88__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-new88new88__payment-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;
      height: 80px;
      width: 100%;
      max-width: 140px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

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

    .page-new88new88__payment-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* About Section */
    .page-new88new88__about-content {
      max-width: 900px;
      margin: 0 auto;
      color: #CCCCCC;
      font-size: 1.1em;
      text-align: left;
    }

    .page-new88new88__about-content p {
      margin-bottom: 20px;
    }

    /* Contact Section */
    .page-new88new88__contact-info {
      max-width: 600px;
      margin: 40px auto 0 auto;
      color: #CCCCCC;
      font-size: 1.1em;
    }

    .page-new88new88__contact-info p {
      margin-bottom: 15px;
    }

    .page-new88new88__contact-info a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-new88new88__contact-info a:hover {
      color: #FFFFFF;
    }

    .page-new88new88__social-links {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-new88new88__social-link {
      display: inline-block;
      width: 50px;
      height: 50px;
      background-color: #333;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-new88new88__social-link:hover {
      background-color: #FFD700;
      transform: translateY(-5px);
    }

    .page-new88new88__social-icon {
      max-width: 60%;
      max-height: 60%;
      height: auto;
      filter: invert(1); /* Keep social icons white on dark background, will be inverted if background changes */
      display: block;
    }
    .page-new88new88__social-link:hover .page-new88new88__social-icon {
        filter: invert(0); /* Make icons black on yellow hover */
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .page-new88new88__hero-title {
        font-size: 3em;
      }
      .page-new88new88__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-new88new88__hero-section {
        padding-top: 100px; /* Điều chỉnh cho mobile header */
        min-height: 500px;
      }
      .page-new88new88__hero-title {
        font-size: 2.2em;
      }
      .page-new88new88__hero-description {
        font-size: 1em;
      }
      .page-new88new88__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-new88new88__section {
        padding: 40px 0;
      }
      .page-new88new88__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-new88new88__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9em;
      }
      .page-new88new88__floating-login-button span {
        font-size: 0.7em;
      }
      .page-new88new88__game-categories,
      .page-new88new88__providers-grid,
      .page-new88new88__promo-list,
      .page-new88new88__guide-steps,
      .page-new88new88__payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-new88new88__game-card-image-wrapper {
        height: 180px;
      }
      .page-new88new88__provider-item, .page-new88new88__payment-item {
        max-width: 100%;
      }
      .page-new88new88__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-new88new88__faq-question h3 {
        font-size: 1em;
      }
      .page-new88new88__faq-answer {
        padding: 0 20px;
      }
      .page-new88new88__faq-item.active .page-new88new88__faq-answer {
        padding: 15px 20px !important;
      }

      /* Force image responsive styles */
      .page-new88new88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-new88new88__hero-image-wrapper,
      .page-new88new88__game-card-image-wrapper,
      .page-new88new88__provider-item,
      .page-new88new88__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  