  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: #f4f4f4;
      font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
      color: #333;
      font-size: 14px;
      line-height: 1.8;
      display: flex;
      justify-content: center;
      padding: 20px 10px;
    }
    a {
      text-decoration: none;
      color: #333;
    }
    .container {
      width: 1000px;
      max-width: 100%;
      background-color: #fff;
      padding: 25px 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.08);
      border-radius: 4px;
    }
    .header {
      border-bottom: 2px solid #ddd;
      padding-bottom: 15px;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 15px;
      position: relative;
    }
    .header-logo {
      width: 150px;
      height: 60px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .header-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .header h1 {
      font-size: 28px;
      color: #000;
      margin: 0;
      font-weight: bold;
      letter-spacing: 1px;
    }
    .sub-text {
      position: absolute;
      right: 0;
      top: 10px;
      font-size: 12px;
      color: #999;
    }
    .slogan-box {
      background-color: #f9f9f9;
      border: 1px solid #e0e0e0;
      padding: 15px 20px;
      margin-bottom: 20px;
    }
    .slogan-blue {
      color: #0000cc;
      font-weight: bold;
      font-size: 16px;
    }
    .slogan-red {
      color: #cc0000;
      font-weight: bold;
      font-size: 18px;
    }
    .main-wrapper {
      display: flex;
      gap: 30px;
    }
    .left-column {
      flex: 3;
      min-width: 0;
    }
    .right-column {
      flex: 1;
      min-width: 200px;
    }
    .section-box {
      margin-bottom: 25px;
    }
    .content-card {
      background-color: #fcfcfc;
      border: 1px solid #e8e8e8;
      padding: 15px 20px;
      margin-bottom: 15px;
      border-radius: 3px;
    }
    .section-title {
      font-size: 16px;
      font-weight: bold;
      color: #333;
      margin-bottom: 12px;
      border-left: 4px solid #d00;
      padding-left: 10px;
    }
    .hero-banner {
      width: 100%;
      height: 200px;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }
    .hero-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .overlay-text {
      position: absolute;
      left: 30px;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
      z-index: 2;
    }
    p {
      margin: 10px 0;
      text-align: justify;
    }

    /* 橘红色强调文字 */
    .highlight-orange {
      color: #FF4500;
      font-weight: bold;
    }

    /* 精彩截图：六个小图宽高完全一致 */
    .screenshot-row {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 10px;
      margin: 18px 0 8px;
      flex-wrap: nowrap;
      width: 100%;
    }
    .screenshot-thumb {
      width: 105px;
      height: 105px;
      object-fit: cover;
      cursor: pointer;
      border: 1px solid #ccc;
      border-radius: 3px;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      background-color: #eee;
      flex-shrink: 0;
      display: block;
    }
    .screenshot-thumb:hover {
      transform: scale(1.03);
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      border-color: #d00;
    }

    @media screen and (max-width: 960px) {
      .screenshot-thumb {
        width: 100px;
        height: 100px;
      }
      .screenshot-row {
        gap: 8px;
      }
    }
    @media screen and (max-width: 720px) {
      .screenshot-thumb {
        width: 80px;
        height: 80px;
      }
      .screenshot-row {
        gap: 6px;
      }
    }
    @media screen and (max-width: 500px) {
      .screenshot-thumb {
        width: 60px;
        height: 60px;
      }
      .screenshot-row {
        gap: 4px;
      }
    }

    .more-screenshot-link {
      display: inline-block;
      font-size: 13px;
      color: #d00;
      margin-top: 6px;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px dashed #d00;
    }
    .more-screenshot-link:hover {
      color: #a00;
      border-bottom: 1px solid #a00;
    }
    .view-detail-link {
      display: inline-block;
      font-size: 13px;
      color: #d00;
      margin-top: 8px;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px dashed #d00;
      cursor: pointer;
    }
    .view-detail-link:hover {
      color: #a00;
      border-bottom: 1px solid #a00;
    }
    .sidebar-btn {
      display: block;
      width: 100%;
      padding: 8px 0;
      margin-bottom: 8px;
      text-align: center;
      background-color: #fff7e6;
      border: 1px solid #f5d5a0;
      color: #e0552c;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.2s;
    }
    .sidebar-btn:hover {
      background-color: #ffecd0;
      border-color: #e8b86b;
    }
    .profile-box {
      border: 1px solid #eee;
      padding: 15px;
      text-align: center;
      margin: 20px 0;
    }
    .profile-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #ccc;
      display: inline-block;
      vertical-align: middle;
    }
    .profile-name {
      display: inline-block;
      vertical-align: middle;
      font-size: 16px;
      font-weight: bold;
      margin-left: 8px;
    }
    .qr-code {
      border: 1px solid #eee;
      padding: 15px;
      text-align: center;
    }
    .qr-code img {
      width: 120px;
      height: 120px;
      background: #fff;
      border: 1px solid #ddd;
    }
    .qr-text {
      margin-top: 10px;
      font-size: 15px;
      font-weight: bold;
      color: #666;
    }
    .kuaishou-btn {
      display: block;
      background: #ffd700;
      color: #fff;
      padding: 10px;
      text-align: center;
      margin-top: 10px;
      font-weight: bold;
      border-radius: 3px;
      font-size: 16px;
    }
    .image-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      margin-top: 20px;
    }
    .game-item {
      border: 1px solid #ddd;
      padding: 8px;
      text-align: center;
      background: #fdfdfd;
    }
    .game-item img {
      width: 100%;
      height: auto;
      display: block;
      background-color: #333;
      min-height: 100px;
    }
    .item-caption {
      font-size: 13px;
      margin-top: 8px;
    }

    /* 游戏下载版块样式 */
    .download-section {
      margin-top: 20px;
      background: #fcfcfc;
      border: 1px solid #e8e8e8;
      padding: 20px 20px 15px;
      border-radius: 3px;
    }
    .download-category {
      margin-bottom: 20px;
    }
    .download-category h3 {
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 8px;
      color: #444;
      border-bottom: 1px dashed #ddd;
      padding-bottom: 6px;
    }
    .download-links {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: center;
    }
    .download-link {
      display: inline-block;
      background: #e0552c;
      color: #fff;
      padding: 6px 18px;
      border-radius: 4px;
      font-weight: bold;
      font-size: 14px;
      transition: background 0.2s;
      border: none;
      cursor: pointer;
    }
    .download-link:hover {
      background: #c04a20;
      color: #fff;
      text-decoration: none;
    }
    .download-link.other {
      background: #5a6b7a;
    }
    .download-link.other:hover {
      background: #3e4d5a;
    }
    .download-note {
      font-size: 12px;
      color: #888;
      margin-top: 10px;
      text-align: left;
      border-top: 1px solid #eee;
      padding-top: 10px;
    }
    .download-more-link {
      font-size: 13px;
      margin-top: 12px;
      color: #d00;
      font-weight: 500;
      text-align: right;
    }
    .download-more-link a {
      color: #d00;
      text-decoration: none;
      border-bottom: 1px dashed #d00;
    }
    .download-more-link a:hover {
      color: #a00;
      border-bottom: 1px solid #a00;
    }

    .footer {
      text-align: center;
      font-size: 12px;
      color: #999;
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }
    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      cursor: zoom-out;
    }
    .lightbox-overlay img {
      max-width: 90%;
      max-height: 90%;
      box-shadow: 0 0 30px rgba(0,0,0,0.7);
      border: 2px solid #fff;
    }
    .close-lightbox {
      position: absolute;
      top: 20px;
      right: 40px;
      font-size: 42px;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      opacity: 0.8;
    }
    .close-lightbox:hover {
      opacity: 1;
    }
  </style>