

    /* 主要内容区域 */
    .main-content {
      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* 游戏头部区域 */
    .game-header {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .game-banner-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .game-banner {
      position: relative;
      aspect-ratio: 16/9;
      max-height: 400px;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #c41e3a 0%, #8b1538 100%);
      color: white;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* 游戏信息卡片 */
    .game-info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
    }

    .game-info-card {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      transition: all 0.3s ease;
      border: 1px solid #e9ecef;
    }

    .game-info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-color: #c41e3a;
    }

    .card-icon {
      font-size: 24px;
      color: #c41e3a;
      flex-shrink: 0;
    }

    .card-content h4 {
      font-size: 14px;
      font-weight: bold;
      color: #333;
      margin-bottom: 4px;
    }

    .card-content p {
      font-size: 12px;
      color: #666;
      margin: 0;
    }

  
    .more-recommendations h3 {
      font-size: 20px;
      color: #333;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .recommendations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
    }

    .recommendation-card {
      background: white;
      border: 2px solid #ff6b35;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      min-height: 150px;
    }

    .recommendation-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    .recommendation-card img {
      width: 100%;
      height: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      display: block;
      flex: 1;
    }

    .recommendation-card .card-info {
      padding: 10px;
      text-align: center;
    }

    .recommendation-card h4 {
      font-size: 14px;
      color: #333;
      margin-bottom: 5px;
      font-weight: 500;
        overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
    }

    .recommendation-card .stars {
      color: #ffc107;
      font-size: 12px;
      letter-spacing: 1px;
    }

    .game-banner img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      transition: transform 0.5s ease;
    }

    .game-banner:hover img {
      transform: scale(1.05);
    }

    .banner-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
      padding: 0 20px;
    }

    /* 游戏统计信息区域 */
    .game-stats-section {
      background: white;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin: 20px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
      background: #f8f9fa;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      background: #e9ecef;
    }

    .stat-icon {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .stat-value {
      font-size: 24px;
      font-weight: bold;
      color: #c41e3a;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 14px;
      color: #666;
    }

    .banner-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
    }

    .play-button {
      background: #c41e3a;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      margin-top: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
    }

    .play-button:hover {
      background: #a01830;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(196, 30, 58, 0.6);
    }

    /* 推荐游戏区域 */
    .recommended-section {
      width: 300px;
      flex-shrink: 0;
    }

    .recommended-section h3 {
      font-size: 18px;
      color: #333;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .recommended-games {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .recommended-game {
      text-align: center;
      border: 2px solid #ff6b35;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      transition: all 0.3s ease;
      background: white;
      display: flex;
      flex-direction: column;
      min-height: 150px;
          max-height: 288px;
    }

    .recommended-game:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    .recommended-game img {
      width: 100%;
      height: 100%;
    
      object-fit: cover;
      display: block;
      position: relative;
      flex: 1;
      min-height: 100px;
    }

    .recommended-game .game-info {
      flex-shrink: 0;
    }

    .recommended-game img::after {
      content: '';
      position: absolute;
      bottom: 5px;
      right: 5px;
      width: 12px;
      height: 12px;
      background: #ff6b35;
      border-radius: 50%;
    }

    .recommended-game .game-info {
      padding: 8px 5px;
      background: white;
    }

    .recommended-game h4 {
      font-size: 11px;
      color: #333;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 500;
    }

    .recommended-game .stars {
      color: #ffc107;
      font-size: 10px;
      letter-spacing: 1px;
    }

    /* 游戏信息区域 */
    .game-info-section {
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
      border: 1px solid #e0e0e0;
    }

    .game-info-content {
      display: flex;
      gap: 30px;
    }

    .game-info-left {
      flex: 1;
      background: #f8f9fa;
      padding: 30px;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .game-info-left h3 {
      font-size: 20px;
      margin-bottom: 20px;
      color: #333;
      font-weight: bold;
      border-bottom: 2px solid #c41e3a;
      padding-bottom: 10px;
      display: inline-block;
    }

    .game-info-left h2 {
      font-size: 28px;
      margin-bottom: 15px;
      color: #333;
      font-weight: bold;
      line-height: 1.2;
    }

    .game-category {
      font-size: 16px;
      color: #666;
      margin-bottom: 15px;
      background: #e9ecef;
      display: inline-block;
      padding: 4px 12px;
      border-radius: 15px;
    }

    .game-rating {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
      padding: 15px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .stars {
      color: #ffc107;
      font-size: 18px;
      letter-spacing: 2px;
    }

    .rating-text {
      font-size: 16px;
      color: #666;
      font-weight: 500;
    }

    .game-description {
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      margin-bottom: 20px;
      text-align: justify;
    }

    .game-description p {
      margin-bottom: 15px;
    }

    /* 相关游戏区域 */
    .related-games-section {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }

    .related-games-section h3 {
      font-size: 18px;
      color: #333;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .related-games-grid {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .related-game-item {
      width: calc(16.666% - 13px);
      text-align: center;
      background: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .related-game-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .related-game-item {
      display: flex;
      flex-direction: column;
      min-height: 200px;
    }

    .related-game-item img {
      width: 100%;
      height: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      display: block;
      flex: 1;
      min-height: 150px;
    }

    .related-game-item .card-info {
      padding: 8px 5px;
      flex-shrink: 0;
    }

    .related-game-item .card-title {
      font-size: 11px;
      color: #333;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 500;
    }

    .related-game-item .stars {
      color: #ffc107;
      font-size: 10px;
      letter-spacing: 1px;
    }


    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
    }

    .social-links a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      transition: opacity 0.3s;
    }

    .social-links a:hover {
      opacity: 0.8;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 20px;
    }

    .footer-links a {
     
      text-decoration: none;
      font-size: 14px;
      transition: opacity 0.3s;
    }

    .footer-links a:hover {
      opacity: 0.8;
    }

    .copyright {
      font-size: 12px;
      opacity: 0.8;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
      .game-header {
        padding: 15px;
        flex-direction: column;
      }

      .recommended-section {
        width: 100%;
      }

      .recommended-games {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .recommended-game {
        width: calc(33.333% - 10px);
      }

      .game-banner {
        height: 250px;
                width: 100%;
      }

      .game-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .game-info-card {
        padding: 15px;
        gap: 10px;
      }

      .card-icon {
        font-size: 20px;
      }

      .card-content h4 {
        font-size: 12px;
      }

      .card-content p {
        font-size: 10px;
      }

      .more-recommendations {
        margin-top: 20px;
      }

      .more-recommendations h3 {
        font-size: 18px;
        margin-bottom: 15px;
      }

      .recommendations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }

      .recommendation-card {
        min-height: 120px;
      }

      .recommendation-card h4 {
        font-size: 12px;
      }

      .recommendation-card .stars {
        font-size: 10px;
      }

      .banner-title {
        font-size: 24px;
      }

      .game-stats-section {
        padding: 20px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .stat-item {
        padding: 15px;
      }

      .stat-icon {
        font-size: 24px;
      }

      .stat-value {
        font-size: 20px;
      }

      .game-info-section {
        padding: 20px;
      }

      .game-info-left {
        padding: 20px;
      }

      .related-games-section {
        padding: 20px;
      }

      .related-game-item {
        width: calc(33.333% - 10px);
      }

      .related-game-item img {
        height: auto;
        aspect-ratio: 1;
      }
    }

    @media (max-width: 480px) {
      .nav {
        display: none;
      }

      .game-header {
        padding: 15px;
      }

      .recommended-section h3,
      .game-info-left h3,
      .related-games-section h3 {
        font-size: 16px;
      }

      .recommended-game {
        width: calc(50% - 8px);
      }

      .banner-title {
        font-size: 20px;
      }

      .game-info-cards {
        grid-template-columns: 1fr;
      }

      .game-info-card {
        padding: 12px;
      }

      .more-recommendations {
        margin-top: 15px;
      }

      .more-recommendations h3 {
        font-size: 16px;
        margin-bottom: 10px;
      }

      .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .recommendation-card {
        min-height: 100px;
      }

      .play-button {
        padding: 10px 24px;
        font-size: 14px;
      }

      .game-stats-section {
        padding: 15px;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .stat-item {
        padding: 12px;
      }

      .stat-icon {
        font-size: 20px;
      }

      .stat-value {
        font-size: 18px;
      }

      .game-info-section {
        padding: 15px;
      }

      .game-info-left {
        padding: 15px;
      }

      .game-info-left h2 {
        font-size: 24px;
      }

      .related-games-section {
        padding: 15px;
      }

      .related-game-item {
        width: calc(50% - 8px);
      }

      .related-game-item img {
        height: auto;
        aspect-ratio: 1;
      }
          .game-banner {
        aspect-ratio: inherit;
    }
    }
