.zz-list {
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        #main {
            width: 100%;
            height: 480px;
            background-color: #000;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 16px;
            position: relative; 
        }

        #player {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.2s ease;
        }
        #buttons {
            width: 100%; 
            display: flex;
            gap: 0;
        }
        #switch, #xynext {
            width: 50%; 
            padding: 12px 0;
            font-size: 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #switch {
            background-color: #6c757d;
            color: white;
            margin-right: 5px;
        }
        #switch:hover {
            background-color: #5a6268;
        }

        #xynext {
            background-color: #0d6efd;
            color: white;
            margin-left: 5px;
        }
        #xynext:hover {
            background-color: #0b5ed7;
        }

        @media (max-width: 768px) {
            #switch, #xynext {
                padding: 10px 0;
                font-size: 14px;
            }
            #player.mobile-mode {
                cursor: pointer; 
            }
        }
		.latest-collect-list li {
		    margin: 10px 5px;
		}

		    .game-grid {
		      display: grid !important;
		      grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)) !important;
		      gap: 10px !important;
		      margin-bottom: 5px;
		      margin-top: 20px;
		    }
		    .game-grid .styled-button {
		      display: flex;
		      align-items: center;
		      justify-content: flex-start;
		      gap: 6px;
		      background: var(--bg-white);
		      border-radius: 8px;
		      padding: 10px 8px;
		      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
		      border: 1px solid #e5e7eb;
		      transition: 0.2s;
		      cursor: pointer;
		      text-align: left;
		      width: 100%;
		      font-size: 12.5px;
		      font-weight: 500;
		      color: var(--text-sub);
		      min-width: 0;
		      text-decoration: none;
		    }
		    .game-grid .styled-button:hover {
		      /* v1.1.27：用户审查元素改的版本——卡片本体不上抬，hover 弹跳交给 .zn-card-ico（jumps 动画） */
		      transform: translateY(0px);
		      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
		      border-color: #cbd5e1;
		      color: var(--color-primary);
		    }
		    .game-grid .styled-button::before {
		      display: none !important;   /* v1.1.26：删除默认 Font Awesome \f11b 占位，留位给 .zn-card-ico */
		    }
		    .game-grid .game-name {
		      flex: 1;
		      white-space: nowrap;
		      overflow: hidden;
		      text-overflow: ellipsis;
		      padding-top: 1px;
		    }
		    /* v1.7.18.54 .game-grid 移动端断点取消，统交给 style.css 的 ≤768 段管（手机 =100px 起步平板=145px）
		       此处只保留 .styled-button 在窄屏的内边距/字号微调，不再覆盖 grid 列数 */
		    body.modal-open {
		      overflow: hidden !important;
		      touch-action: none;
		    }
		    .game-modal-overlay {
		      position: fixed;
		      top: 0;
		      left: 0;
		      width: 100vw;
		      height: 100vh;
		      height: 100dvh;
		      background: rgba(15, 23, 42, 0.95);
		      backdrop-filter: blur(4px);
		      z-index: 9999;
		      display: none;
		      align-items: center;
		      justify-content: center;
		      opacity: 0;
		      transition: opacity 0.3s ease;
		    }
		    .game-modal-overlay.active {
		      display: flex;
		      opacity: 1;
		    }
		    .game-modal-content {
		      width: 85vw;
		      height: 85vh;
		      max-width: 1200px;
		      background: #000;
		      border-radius: 12px;
		      display: flex;
		      flex-direction: column;
		      overflow: hidden;
		      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
		      transform: scale(0.95);
		      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		    }
		    .game-modal-overlay.active .game-modal-content {
		      transform: scale(1);
		    }
		    .game-modal-header {
		      height: 44px;
		      background: #1e293b;
		      display: flex;
		      justify-content: space-between;
		      align-items: center;
		      padding: 0 12px;
		      border-bottom: 1px solid #334155;
		      flex-shrink: 0;
		    }
		    .game-modal-title {
		      font-size: 14px;
		      color: #f8fafc;
		      font-weight: 500;
		      margin: 0;
		      white-space: nowrap;
		      overflow: hidden;
		      text-overflow: ellipsis;
		      flex: 1;
		    }
		    .game-modal-actions {
		      display: flex;
		      gap: 8px;
		      align-items: center;
		    }
		    .game-modal-actions button {
		      background: rgba(255, 255, 255, 0.1);
		      color: #f8fafc;
		      border: none;
		      padding: 5px 10px;
		      border-radius: 6px;
		      font-size: 13px;
		      cursor: pointer;
		      display: flex;
		      align-items: center;
		      gap: 6px;
		      transition: 0.2s;
		    }
		    .game-modal-actions button:hover {
		      background: rgba(255, 255, 255, 0.2);
		    }
		    .game-modal-actions .btn-close {
		      background: rgba(239, 68, 68, 0.2);
		      color: #fca5a5;
		    }
		    .game-modal-actions .btn-close:hover {
		      background: rgba(239, 68, 68, 0.4);
		      color: #fff;
		    }
		    .game-modal-body {
		      flex: 1;
		      position: relative;
		      width: 100%;
		      height: calc(100% - 44px);
		      background: #000;
		      overflow: hidden;
		    }
		    .game-modal-body iframe {
		      width: 100%;
		      height: 100%;
		      border: none;
		      display: block;
		      background: #000;
		    }
		    @media (max-width: 768px) {
		      .game-modal-content {
		        width: 100%;
		        height: 100%;
		        border-radius: 0;
		        transform: scale(1) translateY(100%);
		        transition: transform 0.3s ease-out;
		      }
		      .game-modal-overlay.active .game-modal-content {
		        transform: scale(1) translateY(0);
		      }
		      .game-modal-actions button span {
		        display: none;
		      }
		      .game-modal-actions button {
		        padding: 6px 12px;
		        font-size: 16px;
		      }
		      .game-modal-body {
		        -webkit-overflow-scrolling: touch;
		      }
		    }


		              @media print {
		                  .print-ignore {
		                      display: none !important;
		                  }
		              }

    /* ===== v1.1.23+v1.1.24+v1.1.25+v1.1.26 卡片叠加功能 ===== */
    /* v1.1.26：角标 / APP / ICO 占位全部移到 <a> 外层（.zn-card-wrap），不再被 hover translateY 甩飞 */
    .zn-card-wrap { position: relative; display: block; }
    /* 推荐角标 */
    .zn-card-wrap > .zn-card-badge {
        position: absolute;
        top: -8px;
        left: -9px;
        padding: 3px 4px;
        background: #ff4444;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        border-radius: 3px;
        box-shadow: 0 2px 6px rgb(239 68 68 / 35%);
        z-index: 3;
        line-height: 1.2;
        transform-origin: center;
        pointer-events: none;
    }
    .zn-card-badge {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      backface-visibility: hidden;
      transform: rotate(-15deg) translateZ(0); 
    }
    .zn-card-badge:hover {
      transform: rotate(-15deg) translateZ(0) !important;
    }
    /* APP 标签 */
    .zn-card-wrap > .zn-card-app {
      position: absolute;
      top: -12px;
      right: 6px;
      background: #f5f5f5;
      color: #6b7280;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 10px;
      z-index: 3;
      letter-spacing: 0.5px;
      border: 1px solid #e5e7eb;
      line-height: 1.4;
      pointer-events: none;
    }
    .zn-card-bold { font-weight: 700 !important; }
    /* v1.1.26：ICO 占位统一 24×24 #eff6ff，无 ICO 时也保留占位框让卡片对齐 */
    .zn-card-ico {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      background: #eff6ff;
      border-radius: 50%;
    }
    .zn-card-ico img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
      border-radius: 50%;
    }
    /* 空占位：保持和 ICO 容器一致的 24×24 蓝底框，无图片 */
    .zn-card-ico-empty { background: #eff6ff; }
    /* 窄屏徽标稍缩 */
    @media (max-width: 640px) {
      .zn-card-wrap > .zn-card-badge { font-size: 10px; padding: 2px 7px; top: -8px; left: -10px; }
      .zn-card-wrap > .zn-card-app   { font-size: 9px;  padding: 1px 6px; top: -10px; right: 4px; }
      .zn-card-ico, .zn-card-ico img { width: 20px; height: 20px; }
    }
