
    .page-xn88 {
      font-family: Arial, sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
      box-sizing: border-box;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-xn88__hero-section {
      text-align: center;
      padding: 120px 0 40px; /* Top padding for fixed header */
      background-color: #000000;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .page-xn88__hero-section {
        padding: 100px 0 30px; /* Adjust for mobile fixed header */
      }
    }

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

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

    .page-xn88__hero-content {
      padding: 0 15px;
    }

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

    .page-xn88__hero-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-xn88__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-xn88__button:hover {
      background-color: #E0B900;
      transform: translateY(-2px);
    }

    .page-xn88__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-xn88__floating-buttons .page-xn88__button {
      flex: 1;
      text-align: center;
      white-space: nowrap;
      padding: 15px 10px;
      font-size: 1em;
    }

    .page-xn88__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-xn88__section-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-xn88__text-content {
      max-width: 800px;
      margin: 0 auto 30px;
      color: #FFFFFF;
      font-size: 1.1em;
    }

    .page-xn88__category-grid,
    .page-xn88__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-xn88__category-item,
    .page-xn88__provider-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: #FFFFFF;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px; /* Ensure minimum height for card */
    }

    .page-xn88__category-item:hover,
    .page-xn88__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .page-xn88__category-image-wrapper,
    .page-xn88__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px; /* Ensure images have enough space */
    }

    .page-xn88__category-image,
    .page-xn88__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 5px;
      object-fit: contain; /* Ensure images are not distorted */
      min-width: 200px !important; /* Enforce min width */
      min-height: 200px !important; /* Enforce min height */
      width: 100%;
      max-height: 250px; /* Limit max height for consistent display */
    }

    @media (max-width: 768px) {
      .page-xn88__category-image,
      .page-xn88__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
      }
    }

    .page-xn88__category-name,
    .page-xn88__provider-name {
      font-size: 1.2em;
      font-weight: bold;
      color: #FFD700;
      text-align: center;
    }

    .page-xn88__promotion-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      max-width: 600px;
      margin: 0 auto 30px;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
      text-align: center;
    }

    .page-xn88__promotion-card h3 {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-xn88__promotion-card p {
      font-size: 1.1em;
      color: #FFFFFF;
      margin-bottom: 25px;
    }

    .page-xn88__faq-section {
      padding-bottom: 100px; /* More space for FAQ and floating buttons */
    }

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

    .page-xn88__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-xn88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

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

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

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

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

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

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

    .page-xn88__cta-section {
      background-color: #1a1a1a;
      padding: 50px 20px;
      border-radius: 10px;
      max-width: 900px;
      margin: 40px auto;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

    .page-xn88__cta-section h2 {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-xn88__cta-section p {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    @media (max-width: 1024px) {
      .page-xn88__hero-title {
        font-size: 2.5em;
      }
      .page-xn88__section-title {
        font-size: 2em;
      }
      .page-xn88__category-grid,
      .page-xn88__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-xn88__hero-title {
        font-size: 2em;
      }
      .page-xn88__hero-description {
        font-size: 1em;
      }
      .page-xn88__section-title {
        font-size: 1.8em;
      }
      .page-xn88__text-content {
        font-size: 1em;
      }
      .page-xn88__category-grid,
      .page-xn88__provider-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .page-xn88__category-item,
      .page-xn88__provider-item {
        padding: 15px;
        min-height: 150px;
      }
      .page-xn88__category-name,
      .page-xn88__provider-name {
        font-size: 1em;
      }
      .page-xn88__promotion-card h3 {
        font-size: 1.5em;
      }
      .page-xn88__promotion-card p {
        font-size: 1em;
      }
      .page-xn88__faq-question {
        padding: 15px 20px;
      }
      .page-xn88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-xn88__faq-answer {
        padding: 15px 20px;
      }
      .page-xn88__cta-section h2 {
        font-size: 2em;
      }
      .page-xn88__cta-section p {
        font-size: 1em;
      }
      .page-xn88__floating-buttons {
        gap: 10px;
        width: 95%;
      }
      .page-xn88__floating-buttons .page-xn88__button {
        padding: 12px 8px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-xn88__hero-title {
        font-size: 1.8em;
      }
      .page-xn88__section-title {
        font-size: 1.6em;
      }
      .page-xn88__category-grid,
      .page-xn88__provider-grid {
        grid-template-columns: 1fr;
      }
      .page-xn88__floating-buttons {
        flex-direction: column;
        bottom: 10px;
      }
      .page-xn88__floating-buttons .page-xn88__button {
        width: 100%;
      }
      .page-xn88 {
        padding-bottom: 120px; /* More space for stacked floating buttons */
      }
    }
  