
    /* CSS Styles for page-xn88game */
    :root {
      --page-xn88game__primary-color: #e44d26; /* A vibrant orange/red */
      --page-xn88game__secondary-color: #333;
      --page-xn88game__background-color: #f5f5f5;
      --page-xn88game__text-color: #333;
      --page-xn88game__light-text-color: #666;
      --page-xn88game__white-color: #fff;
      --page-xn88game__dark-grey: #222;
      --page-xn88game__accent-color: #ffcc00; /* Gold for highlights */
    }

    .page-xn88game {
      font-family: 'Arial', sans-serif;
      color: var(--page-xn88game__text-color);
      line-height: 1.6;
      background-color: var(--page-xn88game__background-color);
    }

    /* Header Spacing for Hero Section */
    .page-xn88game__hero-section {
      padding-top: 10px; /* For fixed header */
      position: relative;
      text-align: center;
      color: var(--page-xn88game__white-color);
      overflow: hidden;
      background-color: var(--page-xn88game__dark-grey); /* Fallback */
    }

    .page-xn88game__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-xn88game__hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-xn88game__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-xn88game__accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-xn88game__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    }

    .page-xn88game__button {
      display: inline-block;
      background-color: var(--page-xn88game__primary-color);
      color: var(--page-xn88game__white-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-xn88game__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-xn88game__white-color);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      margin-bottom: 30px;
    }

    .page-xn88game__section:not(.page-xn88game__hero-section) {
        margin-top: 30px; /* Add margin-top for subsequent sections */
    }

    .page-xn88game__section-title {
      font-size: 2.2em;
      color: var(--page-xn88game__primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

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

    .page-xn88game__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

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

    .page-xn88game__game-content {
      padding: 20px;
    }

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

    .page-xn88game__game-description {
      font-size: 0.95em;
      color: var(--page-xn88game__light-text-color);
    }

    .page-xn88game__advantages-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-xn88game__advantage-item {
      background-color: #f0f0f0;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      text-align: center;
    }

    .page-xn88game__advantage-icon {
      width: 200px; /* Minimum 200px as per requirements */
      height: 150px; /* Minimum 200px width/height, adjusting height for common aspect ratio */
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: cover;
      border-radius: 8px;
    }
    .page-xn88game__advantage-title {
      font-size: 1.3em;
      color: var(--page-xn88game__primary-color);
      margin-bottom: 10px;
    }

    .page-xn88game__advantage-text {
      color: var(--page-xn88game__light-text-color);
    }

    .page-xn88game__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-image: linear-gradient(45deg, #FF6B6B, var(--page-xn88game__primary-color));
      color: var(--page-xn88game__white-color);
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse 2s infinite;
      border: none; /* Ensure it's not a link, but a button styled div */
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .page-xn88game__floating-button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    .page-xn88game__floating-button-icon {
      width: 40px; /* At least 200px for the image itself, this is display size */
      height: 40px;
      object-fit: contain;
    }

    /* FAQ Section Styles */
    .page-xn88game__faq-container {
      margin-top: 40px;
    }

    .page-xn88game__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-xn88game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-xn88game__primary-color);
      color: var(--page-xn88game__white-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-xn88game__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-xn88game__white-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-xn88game__faq-question:hover {
      background-color: #c93a1a;
    }

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

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

    .page-xn88game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: var(--page-xn88game__text-color);
    }

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

    .page-xn88game__faq-answer p {
      margin-bottom: 10px;
    }

    .page-xn88game__step-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }

    .page-xn88game__step-item {
      background-color: #f0f0f0;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      position: relative;
      padding-left: 60px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-xn88game__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--page-xn88game__primary-color);
      color: var(--page-xn88game__white-color);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-xn88game__step-title {
      font-size: 1.2em;
      color: var(--page-xn88game__primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Ensure images are responsive */
    .page-xn88game img {
      max-width: 100%;
      height: auto;
      display: block; /* Ensure images behave as block elements for max-width */
      box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-xn88game__hero-content {
        padding: 40px 15px;
      }

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

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

      .page-xn88game__section {
        padding: 30px 15px;
      }

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

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

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

      .page-xn88game__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      
      /* Force responsive images on mobile with !important */
      .page-xn88game img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-xn88game__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-xn88game__advantage-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-xn88game__hero-background {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-xn88game__floating-button-icon {
        width: 30px !important;
        height: 30px !important;
      }
    }

  