
    :root {
      --page-lu88com__primary-color: #ffd700; /* Yellow */
      --page-lu88com__secondary-color: #ffffff; /* White */
      --page-lu88com__background-color: #000000; /* Black */
      --page-lu88com__dark-gray: #1a1a1a;
      --page-lu88com__light-gray: #333333;
    }

    .page-lu88com {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-lu88com__background-color);
      color: var(--page-lu88com__secondary-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-lu88com__section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-lu88com__hero-section {
      background-color: var(--page-lu88com__dark-gray);
      padding-top: 120px; /* Desktop fixed header spacing */
      padding-bottom: 20px;
      position: relative;
      overflow: hidden;
    }

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

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

    .page-lu88com__hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 15px;
    }

    .page-lu88com__hero-title {
      color: var(--page-lu88com__primary-color);
      font-size: 3em;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-lu88com__hero-subtitle {
      color: var(--page-lu88com__secondary-color);
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-lu88com__button {
      display: inline-block;
      background-color: var(--page-lu88com__primary-color);
      color: var(--page-lu88com__background-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-lu88com__button:hover {
      background-color: #ffcc00;
      transform: translateY(-3px);
    }

    .page-lu88com__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-lu88com__primary-color);
      color: var(--page-lu88com__background-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    .page-lu88com__heading {
      color: var(--page-lu88com__primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

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

    .page-lu88com__sub-heading {
      color: var(--page-lu88com__secondary-color);
      font-size: 1.8em;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .page-lu88com__paragraph {
      color: var(--page-lu88com__secondary-color);
      font-size: 1.1em;
      margin-bottom: 20px;
    }

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

    .page-lu88com__game-card {
      background-color: var(--page-lu88com__dark-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-lu88com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

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

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

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

    .page-lu88com__game-card-title {
      font-size: 1.4em;
      color: var(--page-lu88com__primary-color);
      margin-bottom: 10px;
      min-height: 40px; /* Ensure consistent title height */
    }

    .page-lu88com__game-card-description {
      font-size: 0.95em;
      color: var(--page-lu88com__secondary-color);
      margin-bottom: 15px;
    }

    .page-lu88com__game-card-link {
      color: var(--page-lu88com__primary-color);
      text-decoration: none;
      font-weight: bold;
      display: block;
      margin-top: 10px;
    }

    .page-lu88com__game-card-link:hover {
      text-decoration: underline;
    }

    .page-lu88com__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
      text-align: left;
    }

    .page-lu88com__feature-item {
      background-color: var(--page-lu88com__dark-gray);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-lu88com__feature-description {
      color: var(--page-lu88com__secondary-color);
      font-size: 1em;
    }

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

    .page-lu88com__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: var(--page-lu88com__light-gray);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Consistent height for logos */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-lu88com__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-lu88com__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Max height for logos within the wrapper */
      height: auto;
      display: block;
    }

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

    .page-lu88com__payment-item {
      background-color: var(--page-lu88com__dark-gray);
      padding: 15px 25px;
      border-radius: 8px;
      color: var(--page-lu88com__secondary-color);
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-lu88com__faq-container {
      margin-top: 40px;
      text-align: left;
    }

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

    .page-lu88com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: var(--page-lu88com__light-gray);
      cursor: pointer;
      user-select: none;
      color: var(--page-lu88com__primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-lu88com__faq-question:hover {
      background-color: #444444;
    }

    .page-lu88com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
      transition: transform 0.3s ease;
    }

    .page-lu88com__faq-item.active .page-lu88com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-lu88com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      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(--page-lu88com__secondary-color);
    }

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

    @media (max-width: 768px) {
      .page-lu88com__hero-section {
        padding-top: 100px; /* Mobile fixed header spacing */
      }
      .page-lu88com__hero-title {
        font-size: 2.2em;
      }
      .page-lu88com__hero-subtitle {
        font-size: 1.2em;
      }
      .page-lu88com__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-lu88com__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-lu88com__heading {
        font-size: 2em;
      }
      .page-lu88com__sub-heading {
        font-size: 1.5em;
      }
      .page-lu88com__paragraph {
        font-size: 1em;
      }
      .page-lu88com__game-grid, .page-lu88com__feature-list {
        grid-template-columns: 1fr;
      }
      .page-lu88com__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-lu88com__game-card-image-wrapper {
        height: 180px;
      }
      .page-lu88com__game-card-title {
        font-size: 1.2em;
      }
      .page-lu88com__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-lu88com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-lu88com__faq-answer {
        padding: 15px !important; /* Ensure mobile padding is consistent */
      }

      /* Responsive image optimization with !important */
      .page-lu88com__hero-image,
      .page-lu88com__game-card-image,
      .page-lu88com__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-lu88com__hero-image-wrapper,
      .page-lu88com__game-card-image-wrapper,
      .page-lu88com__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  