
    /* 页面专用CSS样式 */
    :root {
      --page-11tr88__primary-color: #e44d26; /* A vibrant, energetic color */
      --page-11tr88__secondary-color: #f7a01a;
      --page-11tr88__dark-background: #1a1a1a;
      --page-11tr88__light-background: #f0f0f0;
      --page-11tr88__text-color: #ffffff;
      --page-11tr88__dark-text-color: #333333;
      --page-11tr88__border-radius: 8px;
    }

    .page-11tr88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-11tr88__text-color);
      background-color: var(--page-11tr88__dark-background);
      overflow-x: hidden; /* Prevent horizontal scroll */
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined in shared.css */
    }

    .page-11tr88__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-11tr88__section--light {
      background-color: var(--page-11tr88__light-background);
      color: var(--page-11tr88__dark-text-color);
    }

    .page-11tr88__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-11tr88__primary-color);
      position: relative;
      padding-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-11tr88__section-subtitle {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
        color: var(--page-11tr88__secondary-color);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-11tr88__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,abstract,11tr88]') no-repeat center center/cover;
      color: var(--page-11tr88__text-color);
      padding: 100px 20px 80px; /* Decorative top padding */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
      position: relative;
    }

    .page-11tr88__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
      color: var(--page-11tr88__secondary-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-11tr88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-11tr88__hero-buttons {
      display: flex;
      gap: 20px;
    }

    .page-11tr88__button {
      background-color: var(--page-11tr88__primary-color);
      color: var(--page-11tr88__text-color);
      padding: 15px 30px;
      border-radius: var(--page-11tr88__border-radius);
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-11tr88__button:hover {
      background-color: #c0392b; /* Darker shade of primary */
      transform: translateY(-3px);
    }

    .page-11tr88__button--secondary {
      background-color: var(--page-11tr88__secondary-color);
    }

    .page-11tr88__button--secondary:hover {
      background-color: #e67e22; /* Darker shade of secondary */
    }

    .page-11tr88__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      max-width: calc(100% - 40px); /* Limit width on larger screens */
    }

    .page-11tr88__floating-button {
      background-color: var(--page-11tr88__primary-color);
      color: var(--page-11tr88__text-color);
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      text-align: center;
      display: inline-block;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-11tr88__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-11tr88__intro-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      text-align: left;
    }

    .page-11tr88__intro-text {
      flex: 1;
      min-width: 300px;
      color: var(--page-11tr88__text-color);
    }

    .page-11tr88__intro-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
      width: 100%; /* Ensure responsive */
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-11tr88__intro-image img {
      max-width: 100%;
      height: auto;
      border-radius: var(--page-11tr88__border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      filter: none; /* Ensure no color filters */
    }

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

    .page-11tr88__product-card {
      background-color: #2a2a2a;
      border-radius: var(--page-11tr88__border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--page-11tr88__text-color);
      box-sizing: border-box;
      width: 100%; /* Ensure card takes full width on mobile */
      max-width: 100%;
    }

    .page-11tr88__product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .page-11tr88__product-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #1a1a1a;
      box-sizing: border-box;
    }

    .page-11tr88__product-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
      filter: none; /* Ensure no color filters */
    }

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

    .page-11tr88__product-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-11tr88__secondary-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-11tr88__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-11tr88__promotion-card {
      background-color: #2a2a2a;
      border-radius: var(--page-11tr88__border-radius);
      padding: 25px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      color: var(--page-11tr88__text-color);
      border-left: 5px solid var(--page-11tr88__primary-color);
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
    }

    .page-11tr88__promotion-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-11tr88__secondary-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-11tr88__why-choose-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-11tr88__feature-item {
      background-color: #2a2a2a;
      border-radius: var(--page-11tr88__border-radius);
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      color: var(--page-11tr88__text-color);
      text-align: center;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
    }

    .page-11tr88__feature-icon {
      margin-bottom: 15px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-11tr88__feature-icon img {
      width: 80px; /* Display size */
      height: auto;
      max-width: 100%;
      border-radius: 50%;
      box-sizing: border-box;
      filter: none; /* Ensure no color filters */
    }
    .page-11tr88__feature-item-title {
        font-size: 1.3em;
        color: var(--page-11tr88__secondary-color);
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    .page-11tr88__provider-logo {
      background-color: #333;
      padding: 15px;
      border-radius: var(--page-11tr88__border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%; /* Ensure responsive */
      overflow: hidden;
    }

    .page-11tr88__provider-logo img {
      max-width: 100%;
      max-height: 60px;
      height: auto;
      object-fit: contain;
      filter: none; /* Ensure no color filters */
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-11tr88__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-11tr88__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: var(--page-11tr88__border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      color: var(--page-11tr88__text-color);
    }

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

    .page-11tr88__faq-question:hover {
      background-color: #444;
    }

    .page-11tr88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-11tr88__secondary-color);
      pointer-events: none; /* Prevents text from blocking click event */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-11tr88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-11tr88__primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

    .page-11tr88__faq-item.active .page-11tr88__faq-toggle {
      transform: rotate(45deg); /* Rotates the '+' to 'x' or '-' */
    }

    .page-11tr88__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: #ccc;
    }

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

    .page-11tr88__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-11tr88__cta-section {
        background-color: var(--page-11tr88__primary-color);
        color: var(--page-11tr88__text-color);
        padding: 60px 20px;
    }

    .page-11tr88__cta-section h2 {
        color: var(--page-11tr88__text-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-11tr88__hero-title {
        font-size: 2.5em;
      }

      .page-11tr88__hero-subtitle {
        font-size: 1.2em;
      }

      .page-11tr88__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-11tr88__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-11tr88__floating-buttons {
        width: calc(100% - 40px);
        bottom: 10px;
        padding: 8px 15px;
        gap: 10px;
      }

      .page-11tr88__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-11tr88__section {
        padding: 30px 15px;
      }

      .page-11tr88__section-title {
        font-size: 2em;
      }
      
      .page-11tr88__section-subtitle {
          font-size: 1.5em;
      }

      .page-11tr88__intro-content {
        flex-direction: column;
        gap: 20px;
      }

      .page-11tr88__intro-text,
      .page-11tr88__intro-image {
        min-width: unset;
        width: 100%;
      }

      .page-11tr88__products-grid,
      .page-11tr88__promotions-grid,
      .page-11tr88__why-choose-us-grid,
      .page-11tr88__payment-providers-grid,
      .page-11tr88__game-providers-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 20px;
      }

      .page-11tr88__product-card,
      .page-11tr88__promotion-card,
      .page-11tr88__feature-item,
      .page-11tr88__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important;
      }

      .page-11tr88__product-card-image-wrapper {
        height: 150px;
      }
      .page-11tr88__product-card-image,
      .page-11tr88__intro-image img,
      .page-11tr88__feature-icon img,
      .page-11tr88__provider-logo img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-11tr88__faq-question {
        padding: 15px;
      }

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

      .page-11tr88__faq-answer {
        padding: 0 15px;
      }
      .page-11tr88__faq-item.active .page-11tr88__faq-answer {
        padding: 15px 15px !important;
      }
    }
    @media (max-width: 480px) {
        .page-11tr88__hero-title {
            font-size: 2em;
        }
        .page-11tr88__hero-subtitle {
            font-size: 1em;
        }
        .page-11tr88__floating-button {
            padding: 8px 12px;
            font-size: 0.85em;
        }
    }
  