
    :root {
      --page-new88link__primary-color: #e0b000; /* Vàng kim */
      --page-new88link__secondary-color: #f0f0f0; /* Trắng nhạt */
      --page-new88link__accent-color: #ff4500; /* Cam đỏ */
      --page-new88link__background-dark: #000000; /* Đen */
      --page-new88link__text-light: #ffffff; /* Trắng */
      --page-new88link__text-dark: #333333; /* Xám đậm */
    }

    body {
      background-color: var(--page-new88link__background-dark);
      color: var(--page-new88link__text-light);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
    }

    .page-new88link__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-new88link__accent-color);
      color: var(--page-new88link__text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      animation: page-new88link__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .page-new88link__floating-button:hover {
      background-color: #cc3700;
      transform: translateY(-5px);
    }

    @keyframes page-new88link__pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 69, 0, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
    }

    .page-new88link__main-content {
      padding-top: 120px; /* Adjust for fixed header */
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
    }

    .page-new88link__section {
      padding: 40px 0;
      margin-bottom: 30px;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for sections */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-new88link__section-title {
      font-size: 2.5em;
      color: var(--page-new88link__primary-color);
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 10px;
    }

    .page-new88link__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-new88link__accent-color);
      border-radius: 2px;
    }

    .page-new88link__hero-section {
      text-align: center;
      padding: 0; /* Hero image will handle its own spacing */
      margin-bottom: 40px;
      padding-top: 120px; /* Ensure content is below fixed header */
    }

    .page-new88link__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 8px;
    }

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

    .page-new88link__hero-content {
      margin-top: 20px;
      padding: 0 15px;
    }

    .page-new88link__hero-title {
      font-size: 3em;
      color: var(--page-new88link__primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-new88link__hero-description {
      font-size: 1.2em;
      color: var(--page-new88link__secondary-color);
      max-width: 800px;
      margin: 0 auto 25px auto;
    }

    .page-new88link__cta-button {
      display: inline-block;
      background-color: var(--page-new88link__accent-color);
      color: var(--page-new88link__text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    .page-new88link__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-new88link__game-card {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-new88link__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-new88link__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      flex-shrink: 0;
    }

    .page-new88link__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-bottom: 2px solid var(--page-new88link__primary-color);
    }

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

    .page-new88link__game-card-title {
      font-size: 1.5em;
      color: var(--page-new88link__primary-color);
      margin-bottom: 10px;
    }

    .page-new88link__game-card-title a {
      color: inherit;
      text-decoration: none;
    }

    .page-new88link__game-card-title a:hover {
      text-decoration: underline;
    }

    .page-new88link__game-card-description {
      color: var(--page-new88link__secondary-color);
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-new88link__game-card-button {
      display: inline-block;
      background-color: var(--page-new88link__accent-color);
      color: var(--page-new88link__text-light);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-new88link__game-card-button:hover {
      background-color: #cc3700;
    }

    .page-new88link__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      padding: 0 15px;
      justify-items: center;
      align-items: center;
    }

    .page-new88link__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-new88link__provider-logo-container:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px var(--page-new88link__primary-color);
    }

    .page-new88link__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      filter: grayscale(20%); /* Subtle grayscale, not changing color */
      transition: filter 0.3s ease;
    }

    .page-new88link__provider-logo:hover {
      filter: grayscale(0%);
    }

    .page-new88link__faq-section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-new88link__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-new88link__faq-item {
      background-color: rgba(255, 255, 255, 0.1);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-new88link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: var(--page-new88link__primary-color);
      color: var(--page-new88link__background-dark);
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

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

    .page-new88link__faq-question:hover {
      background-color: #c99e00;
    }

    .page-new88link__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-new88link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-new88link__secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: rgba(255, 255, 255, 0.05);
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-new88link__main-content {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

      .page-new88link__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

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

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

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

      .page-new88link__game-grid {
        grid-template-columns: 1fr;
      }

      .page-new88link__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-new88link__game-card-image,
      .page-new88link__provider-logo,
      .page-new88link__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-new88link__game-card-image-container,
      .page-new88link__provider-logo-container,
      .page-new88link__hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-new88link__hero-title {
        font-size: 1.8em;
      }

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

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

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

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

      .page-new88link__faq-answer {
        padding: 15px 15px !important;
      }
    }
  