
      /* style/zt9398.css */
      :root {
        --primary-color: #2563eb;
        --secondary-color: #64748b;
        --text-dark: #111111;
        --text-light: #ffffff;
        --bg-light: #f8f9fa;
        --bg-white: #ffffff;
        --border-color: #e0e0e0;
        --shadow-light: rgba(0, 0, 0, 0.1);
      }

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

      .page-zt9398__hero-section {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 0 40px 0;
        background-color: var(--bg-white);
      }

      .page-zt9398__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }

      .page-zt9398__hero-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
      }

      .page-zt9398__hero-content {
        max-width: 900px;
        margin: 20px auto 0 auto;
        padding: 0 20px;
      }

      .page-zt9398__hero-content h1 {
        font-size: clamp(2em, 5vw, 3em);
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 700;
        line-height: 1.2;
      }

      .page-zt9398__hero-content p {
        font-size: 1.1em;
        color: var(--secondary-color);
        margin-bottom: 30px;
      }

      .page-zt9398__cta-button {
        display: inline-block;
        background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
        color: var(--text-light);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1em;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }

      .page-zt9398__cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
      }

      .page-zt9398__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
        color: var(--text-light);
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1em;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: pulse 2s infinite;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        max-width: 200px;
        box-sizing: border-box;
      }

      .page-zt9398__floating-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      }

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

      .page-zt9398__section {
        padding: 60px 20px;
        text-align: center;
        background-color: var(--bg-white);
        margin-bottom: 20px;
      }

      .page-zt9398__section--dark {
        background-color: var(--primary-color);
        color: var(--text-light);
      }

      .page-zt9398__section h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: var(--primary-color);
        font-weight: 700;
      }

      .page-zt9398__section--dark h2 {
        color: var(--text-light);
      }

      .page-zt9398__section h3 {
        font-size: 1.8em;
        margin-bottom: 20px;
        color: var(--primary-color);
      }

      .page-zt9398__section--dark h3 {
        color: var(--text-light);
      }

      .page-zt9398__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .page-zt9398__card {
        background-color: var(--bg-white);
        border-radius: 12px;
        box-shadow: 0 5px 20px var(--shadow-light);
        padding: 30px;
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: var(--text-dark);
        border: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
      }

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

      .page-zt9398__card-image-wrapper {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        overflow: hidden;
        border-radius: 8px;
        box-sizing: border-box;
      }

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

      .page-zt9398__card h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: var(--primary-color);
      }

      .page-zt9398__card p {
        font-size: 1em;
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .page-zt9398__game-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        text-align: left;
      }

      .page-zt9398__game-item {
        background-color: var(--bg-white);
        border-radius: 12px;
        box-shadow: 0 4px 15px var(--shadow-light);
        overflow: hidden;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        color: var(--text-dark);
        box-sizing: border-box;
      }

      .page-zt9398__game-item:hover {
        transform: translateY(-5px);
      }

      .page-zt9398__game-image-wrapper {
        width: 100%;
        height: 220px;
        overflow: hidden;
        box-sizing: border-box;
      }

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

      .page-zt9398__game-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .page-zt9398__game-content h3 {
        font-size: 1.6em;
        margin-bottom: 10px;
        color: var(--primary-color);
      }

      .page-zt9398__game-content p {
        font-size: 0.95em;
        color: var(--secondary-color);
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .page-zt9398__btn-play {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 12px 25px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        white-space: normal;
        word-wrap: break-word;
        box-sizing: border-box;
      }

      .page-zt9398__btn-play:hover {
        background-color: #3b82f6;
      }

      .page-zt9398__faq-section {
        background-color: var(--bg-white);
        padding: 60px 20px;
        margin-bottom: 20px;
        text-align: center;
      }

      .page-zt9398__faq-section h2 {
        color: var(--primary-color);
        margin-bottom: 40px;
      }

      .page-zt9398__faq-list {
        max-width: 900px;
        margin: 0 auto;
        list-style: none;
        padding: 0;
      }

      .page-zt9398__faq-item {
        background-color: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        text-align: left;
        box-sizing: border-box;
      }

      .page-zt9398__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        font-size: 1.15em;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        user-select: none;
        background-color: var(--bg-white);
        transition: background-color 0.3s ease;
      }

      .page-zt9398__faq-question:hover {
        background-color: var(--bg-light);
      }

      .page-zt9398__faq-question h3 {
        margin: 0;
        font-size: 1.15em;
        pointer-events: none;
        flex-grow: 1;
        color: var(--text-dark);
      }

      .page-zt9398__faq-toggle {
        font-size: 1.5em;
        font-weight: 700;
        margin-left: 15px;
        pointer-events: none;
        color: var(--primary-color);
      }

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

      .page-zt9398__faq-item.active .page-zt9398__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
      }

      /* Responsive styles */
      @media (max-width: 768px) {
        .page-zt9398 {
          font-size: 15px;
        }

        .page-zt9398__hero-section {
          padding-bottom: 30px;
        }

        .page-zt9398__hero-content {
          margin-top: 15px;
          padding: 0 15px;
        }

        .page-zt9398__hero-content h1 {
          font-size: 2em;
        }

        .page-zt9398__hero-content p {
          font-size: 1em;
          margin-bottom: 20px;
        }

        .page-zt9398__cta-button {
          padding: 12px 25px;
          font-size: 1em;
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          white-space: normal !important;
          word-wrap: break-word !important;
        }

        .page-zt9398__floating-button {
          bottom: 15px;
          right: 15px;
          font-size: 0.9em;
          padding: 10px 15px;
          max-width: 160px;
        }

        .page-zt9398__section {
          padding: 40px 15px;
        }

        .page-zt9398__section h2 {
          font-size: 2em;
          margin-bottom: 30px;
        }

        .page-zt9398__grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .page-zt9398__card {
          padding: 25px;
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          margin: 0 auto;
        }

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

        .page-zt9398__game-list {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 0 15px;
        }

        .page-zt9398__game-item {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
        }

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

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

        .page-zt9398__game-content h3 {
          font-size: 1.4em;
        }

        .page-zt9398__btn-play {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          white-space: normal !important;
          word-wrap: break-word !important;
          padding-left: 15px;
          padding-right: 15px;
        }

        .page-zt9398__faq-section {
          padding: 40px 15px;
        }

        .page-zt9398__faq-list {
          padding: 0 10px;
        }

        .page-zt9398__faq-question {
          padding: 15px 20px;
          font-size: 1em;
        }

        .page-zt9398__faq-question h3 {
          font-size: 1em;
        }

        .page-zt9398__faq-answer {
          padding: 15px 20px !important;
        }

        /* Image responsiveness */
        .page-zt9398 img {
          max-width: 100% !important;
          height: auto !important;
          display: block !important;
        }

        .page-zt9398__hero-image-wrapper,
        .page-zt9398__card-image-wrapper,
        .page-zt9398__game-image-wrapper {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          overflow: hidden !important;
        }

        /* List item responsiveness */
        .page-zt9398__game-list li {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
        }

        .page-zt9398__game-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
        }
      }
    