
    .page-u888vip {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 80px; /* Space for fixed button */
    }

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

    .page-u888vip__hero-section {
      width: 100%;
      background-color: #0f3460;
      text-align: center;
      padding: 10px 0 40px; /* Added padding-top for fixed header */
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
    }

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

    .page-u888vip__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
    }

    .page-u888vip__hero-title {
      font-size: 2.8em;
      color: #e94560;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-u888vip__hero-subtitle {
      font-size: 1.3em;
      color: #fff;
      margin-bottom: 25px;
    }

    .page-u888vip__login-button-fixed {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e94560;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      white-space: nowrap;
      text-align: center;
    }

    .page-u888vip__login-button-fixed:hover {
      background-color: #c93550;
      transform: translateX(-50%) translateY(-3px);
      box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
    }

    .page-u888vip__section {
      padding: 50px 0;
      text-align: center;
      width: 100%;
    }

    .page-u888vip__section--dark {
      background-color: #16213e;
    }

    .page-u888vip__section--light {
      background-color: #0f3460;
    }

    .page-u888vip__section-title {
      font-size: 2.5em;
      color: #e94560;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-u888vip__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
    }

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

    .page-u888vip__card {
      background-color: #0f3460;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

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

    .page-u888vip__card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-u888vip__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-u888vip__card-title {
      font-size: 1.5em;
      color: #e94560;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-u888vip__card-description {
      color: #ccc;
      font-size: 1em;
    }

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

    .page-u888vip__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        border-radius: 8px;
        background-color: #1a1a2e;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }
    .page-u888vip__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

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

    .page-u888vip__cta-button {
      display: inline-block;
      background-color: #e94560;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      margin-top: 30px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    /* FAQ Section */
    .page-u888vip__faq-section {
      padding: 50px 0;
      background-color: #16213e;
      width: 100%;
    }

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

    .page-u888vip__faq-item {
      background-color: #0f3460;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-u888vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #0f3460;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-u888vip__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-u888vip__faq-question h3 {
      margin: 0;
      font-size: 1.25em;
      color: #e94560;
      pointer-events: none; /* Prevent blocking click event */
    }

    .page-u888vip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent blocking click event */
    }

    .page-u888vip__faq-item.active .page-u888vip__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect */
    }

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

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-u888vip__hero-section {
        padding: 10px 0 30px; /* Adjusted padding-top for mobile fixed header */
      }

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

      .page-u888vip__hero-subtitle {
        font-size: 1em;
      }

      .page-u888vip__login-button-fixed {
        padding: 12px 20px;
        font-size: 1em;
        width: calc(100% - 40px);
        bottom: 15px;
      }

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

      .page-u888vip__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-u888vip__text-content {
        font-size: 0.95em;
      }

      .page-u888vip__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
      }

      .page-u888vip__card {
        padding: 20px;
      }

      .page-u888vip__card-title {
        font-size: 1.3em;
      }

      .page-u888vip__provider-logo-wrapper {
        padding: 10px;
      }

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

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

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

      .page-u888vip__faq-toggle {
        font-size: 1.5em;
      }

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

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

      /* Image responsive overrides with !important */
      .page-u888vip__hero-image-wrapper,
      .page-u888vip__card-image-wrapper,
      .page-u888vip__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-u888vip__hero-image,
      .page-u888vip__card-image,
      .page-u888vip__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  