
    :root {
      --page-taixiusunwin20-bg-color: #000000;
      --page-taixiusunwin20-text-color-light: #FFFFFF;
      --page-taixiusunwin20-text-color-accent: #FFD700; /* Gold/Yellow */
      --page-taixiusunwin20-button-bg: #FFD700;
      --page-taixiusunwin20-button-text: #000000;
      --page-taixiusunwin20-border-color: #333333;
      --page-taixiusunwin20-hover-color: #FFEB3B;
      --page-taixiusunwin20-shadow-color: rgba(255, 215, 0, 0.3);
    }

    .page-taixiusunwin20 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-taixiusunwin20-bg-color);
      color: var(--page-taixiusunwin20-text-color-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-taixiusunwin20__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

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

    .page-taixiusunwin20__section:nth-child(even) {
      background-color: #0d0d0d;
    }

    .page-taixiusunwin20__title {
      color: var(--page-taixiusunwin20-text-color-accent);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-taixiusunwin20__subtitle {
      color: var(--page-taixiusunwin20-text-color-light);
      font-size: 1.8em;
      margin-bottom: 20px;
    }

    .page-taixiusunwin20__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--page-taixiusunwin20-text-color-light);
    }

    .page-taixiusunwin20__button {
      display: inline-block;
      background-color: var(--page-taixiusunwin20-button-bg);
      color: var(--page-taixiusunwin20-button-text);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px var(--page-taixiusunwin20-shadow-color);
    }

    .page-taixiusunwin20__button:hover {
      background-color: var(--page-taixiusunwin20-hover-color);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-taixiusunwin20__hero-section {
      padding-top: 140px; /* Safety zone for fixed header */
      text-align: center;
      position: relative;
      overflow: hidden;
      background-color: #000;
    }

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

    .page-taixiusunwin20__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure original ratio */
    }

    .page-taixiusunwin20__hero-content {
      padding: 40px 20px;
      background-color: rgba(0, 0, 0, 0.7);
      margin-top: -5px; /* Slight overlap to avoid gap */
    }

    .page-taixiusunwin20__hero-title {
      font-size: 3em;
      color: var(--page-taixiusunwin20-text-color-accent);
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    }

    .page-taixiusunwin20__hero-description {
      font-size: 1.3em;
      color: var(--page-taixiusunwin20-text-color-light);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Game List/Grid */
    .page-taixiusunwin20__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-taixiusunwin20__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-taixiusunwin20-border-color);
    }

    .page-taixiusunwin20__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px var(--page-taixiusunwin20-shadow-color);
    }

    .page-taixiusunwin20__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #0d0d0d;
    }

    .page-taixiusunwin20__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }

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

    .page-taixiusunwin20__game-title {
      font-size: 1.4em;
      color: var(--page-taixiusunwin20-text-color-accent);
      margin-bottom: 10px;
    }

    .page-taixiusunwin20__game-description {
      font-size: 0.95em;
      color: var(--page-taixiusunwin20-text-color-light);
    }

    /* Game Providers */
    .page-taixiusunwin20__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-taixiusunwin20__provider-logo-wrapper {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-taixiusunwin20-border-color);
      box-sizing: border-box;
    }

    .page-taixiusunwin20__provider-logo-wrapper:hover {
      transform: scale(1.05);
      border-color: var(--page-taixiusunwin20-text-color-accent);
    }

    .page-taixiusunwin20__provider-logo {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
      min-width: 200px; /* Enforce minimum size for gamelogo type */
      min-height: 200px; /* Enforce minimum size for gamelogo type */
    }

    /* Payment Methods */
    .page-taixiusunwin20__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-taixiusunwin20__payment-method {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-taixiusunwin20-border-color);
      box-sizing: border-box;
    }

    .page-taixiusunwin20__payment-method:hover {
      transform: scale(1.05);
      border-color: var(--page-taixiusunwin20-text-color-accent);
    }

    .page-taixiusunwin20__payment-logo {
      max-width: 80%;
      max-height: 60px;
      height: auto;
      object-fit: contain;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-taixiusunwin20__payment-name {
      font-size: 0.9em;
      margin-top: 10px;
      color: var(--page-taixiusunwin20-text-color-light);
    }

    /* Floating Button */
    .page-taixiusunwin20__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-taixiusunwin20-button-bg);
      color: var(--page-taixiusunwin20-button-text);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(255, 215, 0, 0.3);
      z-index: 1000;
      animation: page-taixiusunwin20__pulse 2s infinite;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-taixiusunwin20__floating-button:hover {
      background-color: var(--page-taixiusunwin20-hover-color);
      transform: scale(1.05);
    }

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

    /* FAQ Section */
    .page-taixiusunwin20__faq-section {
      background-color: #0d0d0d;
    }

    .page-taixiusunwin20__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-taixiusunwin20__faq-item {
      background-color: #1a1a1a;
      border: 1px solid var(--page-taixiusunwin20-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-taixiusunwin20__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      transition: background-color 0.3s ease;
    }

    .page-taixiusunwin20__faq-question:hover {
      background-color: #333333;
    }

    .page-taixiusunwin20__faq-question h3 {
      margin: 0;
      color: var(--page-taixiusunwin20-text-color-accent);
      font-size: 1.2em;
      pointer-events: none; /* Prevent blocking click event */
    }

    .page-taixiusunwin20__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-taixiusunwin20-text-color-accent);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent blocking click event */
    }

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

    .page-taixiusunwin20__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: var(--page-taixiusunwin20-text-color-light);
      background-color: #1a1a1a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-taixiusunwin20__hero-section {
        padding-top: 100px; /* Mobile safety zone */
      }

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

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

      .page-taixiusunwin20__title {
        font-size: 2em;
      }

      .page-taixiusunwin20__subtitle {
        font-size: 1.4em;
      }

      .page-taixiusunwin20__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-taixiusunwin20__game-image-wrapper {
        height: 180px;
      }

      .page-taixiusunwin20__game-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-taixiusunwin20__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-taixiusunwin20__payment-logo {
        max-width: 100% !important;
        height: auto !important;
      }

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

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

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

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

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

      .page-taixiusunwin20__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-taixiusunwin20__title {
        font-size: 1.8em;
      }
      .page-taixiusunwin20__hero-title {
        font-size: 1.6em;
      }
    }
  