
    /* CSS Styles for page-sunwintaixiu */
    :root {
      --page-sunwintaixiu__primary-color: #f7b32b; /* Gold/Orange for accent */
      --page-sunwintaixiu__secondary-color: #333; /* Dark grey for text */
      --page-sunwintaixiu__background-color: #1a1a1a; /* Dark background */
      --page-sunwintaixiu__text-light: #f0f0f0; /* Light text on dark background */
      --page-sunwintaixiu__text-dark: #333; /* Dark text on light background */
      --page-sunwintaixiu__border-color: #444;
      --page-sunwintaixiu__button-bg: #e65100; /* Deep orange for buttons */
      --page-sunwintaixiu__button-hover-bg: #ff6f00;
      --page-sunwintaixiu__card-bg: #2a2a2a;
      --page-sunwintaixiu__shadow: rgba(0, 0, 0, 0.5);
    }

    .page-sunwintaixiu {
      font-family: 'Arial', sans-serif;
      color: var(--page-sunwintaixiu__text-light);
      background-color: var(--page-sunwintaixiu__background-color);
      line-height: 1.6;
    }

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

    /* Highlight color for keywords */
    .page-sunwintaixiu__highlight {
      color: var(--page-sunwintaixiu__primary-color);
      font-weight: bold;
    }

    /* Hero Section */
    .page-sunwintaixiu__hero-section {
      text-align: center;
      padding: 10px 0 40px 0; /* Adjusted padding-top for fixed header */
      background: linear-gradient(180deg, var(--page-sunwintaixiu__background-color) 0%, rgba(26, 26, 26, 0.8) 100%);
      position: relative;
      overflow: hidden;
    }

    .page-sunwintaixiu__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Ensure image is not stretched */
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--page-sunwintaixiu__shadow);
      margin-bottom: 20px;
    }

    .page-sunwintaixiu__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 20px;
    }

    .page-sunwintaixiu__hero-title {
      font-size: 2.8em;
      color: var(--page-sunwintaixiu__primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px var(--page-sunwintaixiu__shadow);
    }

    .page-sunwintaixiu__hero-subtitle {
      font-size: 1.4em;
      color: var(--page-sunwintaixiu__text-light);
      margin-bottom: 30px;
    }

    .page-sunwintaixiu__button {
      display: inline-block;
      background-color: var(--page-sunwintaixiu__button-bg);
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      border: none;
      cursor: pointer;
    }

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

    /* Floating Login Button */
    .page-sunwintaixiu__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-sunwintaixiu__button-bg);
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
      animation: page-sunwintaixiu__pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-sunwintaixiu__floating-button:hover {
      background-color: var(--page-sunwintaixiu__button-hover-bg);
      animation: none;
    }

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

    /* Section Styling */
    .page-sunwintaixiu__section {
      padding: 40px 0;
      border-bottom: 1px solid var(--page-sunwintaixiu__border-color);
    }

    .page-sunwintaixiu__section:last-of-type {
      border-bottom: none;
    }

    .page-sunwintaixiu__section-title {
      font-size: 2.2em;
      color: var(--page-sunwintaixiu__text-light);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-sunwintaixiu__content-block {
      background-color: var(--page-sunwintaixiu__card-bg);
      padding: 30px;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .page-sunwintaixiu__content-block h3 {
      color: var(--page-sunwintaixiu__primary-color);
      font-size: 1.6em;
      margin-top: 0;
      margin-bottom: 15px;
    }

    .page-sunwintaixiu__content-block p {
      margin-bottom: 15px;
      color: var(--page-sunwintaixiu__text-light);
    }

    .page-sunwintaixiu__content-block ul {
      list-style-type: none;
      padding-left: 0;
      margin-bottom: 15px;
    }

    .page-sunwintaixiu__content-block ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      color: var(--page-sunwintaixiu__text-light);
    }

    .page-sunwintaixiu__content-block ul li::before {
      content: '✔';
      color: var(--page-sunwintaixiu__primary-color);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

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

    .page-sunwintaixiu__image-card {
      background-color: var(--page-sunwintaixiu__card-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--page-sunwintaixiu__shadow);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-sunwintaixiu__image-card:hover {
      transform: translateY(-5px);
    }

    .page-sunwintaixiu__image-card img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-bottom: 1px solid var(--page-sunwintaixiu__border-color);
      min-height: 200px; /* Enforce minimum image height */
      min-width: 200px; /* Enforce minimum image width */
    }

    .page-sunwintaixiu__image-card-title {
      padding: 15px;
      font-size: 1.2em;
      color: var(--page-sunwintaixiu__primary-color);
      font-weight: bold;
    }

    /* Game Categories Grid */
    .page-sunwintaixiu__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-sunwintaixiu__game-card {
      background-color: var(--page-sunwintaixiu__card-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px var(--page-sunwintaixiu__shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-sunwintaixiu__text-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-sunwintaixiu__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    }

    .page-sunwintaixiu__game-card img {
      width: 100%;
      max-width: 200px; /* Minimum width for gamelogo type, ensuring it's not too small */
      height: auto;
      margin-bottom: 10px;
      border-radius: 4px;
      min-width: 200px; /* Enforce min width */
      min-height: 200px; /* Enforce min height */
      object-fit: contain;
    }
    
    .page-sunwintaixiu__game-card span {
      font-weight: bold;
      font-size: 1.1em;
      color: var(--page-sunwintaixiu__primary-color);
    }

    /* FAQ Section */
    .page-sunwintaixiu__faq-section {
      padding: 40px 0;
    }

    .page-sunwintaixiu__faq-section-title {
      font-size: 2.2em;
      color: var(--page-sunwintaixiu__text-light);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-sunwintaixiu__faq-item {
      background-color: var(--page-sunwintaixiu__card-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      overflow: hidden;
    }

    .page-sunwintaixiu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-sunwintaixiu__border-color);
      transition: background-color 0.3s ease;
    }

    .page-sunwintaixiu__faq-question:hover {
      background-color: #4a4a4a;
    }

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

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

    .page-sunwintaixiu__faq-item.active .page-sunwintaixiu__faq-toggle {
      transform: rotate(45deg); /* Rotates plus to an 'x' or minus */
    }

    .page-sunwintaixiu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-sunwintaixiu__card-bg);
      color: var(--page-sunwintaixiu__text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-sunwintaixiu__faq-item.active .page-sunwintaixiu__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px !important;
      opacity: 1;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-sunwintaixiu__container {
        padding: 15px;
      }

      .page-sunwintaixiu__hero-title {
        font-size: 2.2em;
      }

      .page-sunwintaixiu__hero-subtitle {
        font-size: 1.1em;
      }

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

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

      .page-sunwintaixiu__content-block {
        padding: 20px;
      }

      .page-sunwintaixiu__content-block h3 {
        font-size: 1.4em;
      }

      .page-sunwintaixiu__image-grid {
        grid-template-columns: 1fr;
      }
      
      .page-sunwintaixiu__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-sunwintaixiu__faq-question {
        padding: 12px 15px;
      }

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

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

      .page-sunwintaixiu__faq-answer {
        padding: 0 15px;
      }

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

      .page-sunwintaixiu__hero-section {
        padding-top: 10px; /* Ensure content is not hidden by fixed header on mobile */
      }

      /* Image responsive optimization for mobile */
      .page-sunwintaixiu img {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-sunwintaixiu__image-card img,
      .page-sunwintaixiu__game-card img {
        min-width: unset !important; /* Allow smaller images in mobile grid to fit */
        min-height: unset !important;
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sunwintaixiu__image-card, .page-sunwintaixiu__game-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-sunwintaixiu__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  