
      :root {
        --primary-black: #1a1a1a;
        --text-white: #ffffff;
        --text-yellow: #ffd700;
        --accent-blue: #2F6BFF;
        --secondary-blue: #6FA3FF;
        --glow-blue: #A5C4FF;
        --border-blue: #D6E2FF;
        --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
        --card-bg: #282828;
        --text-main-blue: #1F2D3D;
        --background-light: #F4F7FB;
      }

      .page-new88 {
        background-color: var(--primary-black);
        color: var(--text-white);
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating button */
      }

      .page-new88__hero-section {
        position: relative;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-new88__hero-image {
        width: 100%;
        max-width: 1200px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      }

      .page-new88__hero-content {
        padding: 0 20px;
        max-width: 900px;
      }

      .page-new88__hero-title {
        font-size: 2.8em;
        color: var(--text-yellow);
        margin-bottom: 15px;
        font-weight: bold;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
      }

      .page-new88__hero-description {
        font-size: 1.1em;
        color: var(--text-white);
        margin-bottom: 30px;
      }

      .page-new88__cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .page-new88__btn-primary,
      .page-new88__btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        min-width: 180px;
        text-align: center;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        border: none;
      }

      .page-new88__btn-primary {
        background: var(--button-gradient);
        color: var(--text-white);
        box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
      }

      .page-new88__btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
      }

      .page-new88__btn-secondary {
        background-color: var(--text-yellow);
        color: var(--primary-black);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      }

      .page-new88__btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
      }

      .page-new88__section-title {
        font-size: 2.2em;
        color: var(--text-yellow);
        text-align: center;
        margin-bottom: 40px;
        padding-top: 40px;
        font-weight: bold;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
      }

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

      .page-new88__text-block {
        margin-bottom: 30px;
        font-size: 1.05em;
        color: var(--text-white);
      }

      .page-new88__text-block h3 {
        color: var(--text-yellow);
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 15px;
      }

      .page-new88__text-block p {
        margin-bottom: 1em;
      }

      .page-new88__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
      }

      .page-new88__game-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
      }

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

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

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

      .page-new88__game-title {
        font-size: 1.4em;
        color: var(--text-yellow);
        margin-bottom: 10px;
        font-weight: bold;
      }

      .page-new88__game-description {
        font-size: 0.95em;
        color: var(--text-white);
        margin-bottom: 15px;
      }

      .page-new88__game-button {
        background: var(--button-gradient);
        color: var(--text-white);
        padding: 10px 20px;
        border-radius: 6px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        transition: background 0.3s ease;
        white-space: normal;
        word-wrap: break-word;
      }

      .page-new88__game-button:hover {
        background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
      }

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

      .page-new88__provider-logo {
        width: 100%;
        max-width: 100px;
        height: auto;
        object-fit: contain;
        padding: 10px;
        background-color: var(--card-bg);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }

      .page-new88__faq-section {
        margin-top: 50px;
      }

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

      .page-new88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        font-size: 1.2em;
        font-weight: bold;
        color: var(--text-yellow);
        cursor: pointer;
        user-select: none;
        background-color: #282828;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

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

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

      .page-new88__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--text-yellow);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
      }

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

      .page-new88__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: var(--text-white);
        font-size: 1em;
      }

      .page-new88__faq-item.active .page-new88__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
      }

      .page-new88__floating-button-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        width: 100%;
        max-width: calc(100% - 40px);
        display: flex;
        justify-content: flex-end;
        box-sizing: border-box;
      }

      .page-new88__floating-button {
        background: var(--button-gradient);
        color: var(--text-white);
        padding: 15px 25px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(47, 107, 255, 0.6);
        transition: transform 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 250px;
        min-width: 180px;
        text-align: center;
        box-sizing: border-box;
      }

      .page-new88__floating-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(47, 107, 255, 0.8);
      }

      .page-new88__social-media {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 50px;
        padding-bottom: 50px;
        flex-wrap: wrap;
      }

      .page-new88__social-icon {
        width: 50px;
        height: 50px;
        object-fit: contain;
        transition: transform 0.3s ease;
      }

      .page-new88__social-icon:hover {
        transform: scale(1.1);
      }

      /* General image and container responsiveness */
      .page-new88 img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .page-new88__section,
      .page-new88__container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
      }

      /* Mobile Responsiveness */
      @media (max-width: 768px) {
        .page-new88 {
          font-size: 15px;
          padding-bottom: 100px; /* More space for floating button on mobile */
        }

        .page-new88__hero-section {
          padding-top: 10px !important;
          padding-bottom: 30px;
        }

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

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

        .page-new88__cta-buttons {
          flex-direction: column;
          align-items: center;
          gap: 10px;
          padding: 0 15px;
        }

        .page-new88__btn-primary,
        .page-new88__btn-secondary {
          max-width: 100% !important;
          width: 100% !important;
          padding: 12px 20px;
          font-size: 1em;
          min-width: unset;
        }

        .page-new88__section-title {
          font-size: 1.8em;
          margin-bottom: 30px;
          padding-top: 30px;
        }

        .page-new88__content-wrapper {
          padding: 0 15px;
        }

        .page-new88__text-block h3 {
          font-size: 1.4em;
        }

        .page-new88__games-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .page-new88__game-image {
          height: 180px;
        }

        .page-new88__game-info {
          padding: 15px;
        }

        .page-new88__game-title {
          font-size: 1.2em;
        }

        .page-new88__providers-grid {
          grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
          gap: 15px;
        }

        .page-new88__provider-logo {
          max-width: 80px;
          padding: 8px;
        }

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

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

        .page-new88__floating-button-container {
          bottom: 15px;
          right: 15px;
          max-width: calc(100% - 30px);
          justify-content: center;
        }

        .page-new88__floating-button {
          max-width: 100% !important;
          width: 100% !important;
          font-size: 1em;
          padding: 12px 20px;
          white-space: normal !important;
          word-wrap: break-word !important;
          min-width: unset;
        }

        .page-new88__social-media {
          gap: 20px;
          margin-top: 40px;
          padding-bottom: 40px;
        }

        .page-new88__social-icon {
          width: 45px;
          height: 45px;
        }

        .page-new88 img {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
        }

        .page-new88__section,
        .page-new88__card,
        .page-new88__container {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 15px;
          padding-right: 15px;
        }
      }
    