:root{--mi-primary:#ff6900;--mi-text:#151515}
*{box-sizing:border-box}
body{margin:0;color:var(--mi-text);font-family:Arial,"PingFang SC","Microsoft YaHei",sans-serif;background:#fff}
.mi-header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100}
.mi-header-inner{max-width:1200px;margin:0 auto;height:60px;display:flex;align-items:center;justify-content:space-between;padding:0 16px}
.mi-logo{display:flex;align-items:center;gap:10px;color:var(--mi-text)}
.mi-logo-img{height:40px;width:auto;image-rendering:-webkit-optimize-contrast}
.mi-brand{font-weight:600}
.mi-nav{list-style:none;margin:0;padding:0;display:flex;gap:16px}
.mi-nav a{color:var(--mi-text);text-decoration:none}
.mi-footer{background:#f7f7f7;border-top:1px solid #eee;margin-top:24px}
.footer-wrap{max-width:1200px;margin:0 auto;padding:16px}
.footer-bar a{margin-right:12px;color:#555;text-decoration:none}
.depict{color:#666}
.container{max-width:1200px;margin:0 auto;padding:16px}
.layout{display:grid;grid-template-columns:1fr 240px;gap:16px}
.sidebar{background:#fafafa;border:1px solid #eee;border-radius:6px;padding:12px}
.sidebar h2{margin:0 0 8px 0;font-size:16px}
.hot-rank,.ad-slot{margin-top:12px}
.card{background:#fff;border:1px solid #eee;border-radius:6px;padding:16px}
.game-list{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.game-item{display:flex;gap:10px;border:1px solid #eee;border-radius:6px;padding:10px}
.thumb{display:block;width:80px;height:80px;border-radius:8px;overflow:hidden;background:#f5f5f5;flex-shrink:0}
.thumb img{width:100%;height:100%;object-fit:cover}
.info{flex:1}
.name{font-weight:600}
.score{color:#14b9c7;margin-left:6px}
@media (max-width:1024px){.game-list{grid-template-columns:repeat(3,1fr)}}
@media (max-width:768px){.layout{grid-template-columns:1fr}.sidebar{display:none}.game-list{grid-template-columns:repeat(2,1fr)}}
.tag-bar{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:12px}
.tag-btn{border:1px solid #eee;border-radius:16px;padding:6px 12px;background:#fff;cursor:pointer}
.tag-btn.active{border-color:var(--mi-primary);color:var(--mi-primary)}
.empty{display:flex;align-items:center;justify-content:center;min-height:160px;border:1px dashed #ddd;border-radius:6px;color:#777}
.hidden{display:none}
.detail-banner{width:100%;height:auto;border-radius:6px;border:1px solid #eee;display:block}
.mt12{margin-top:12px}
.game-lines{display:flex;flex-direction:column;gap:16px}

/* Game Line Styles (Consolidated) */
.game-line{display:flex;gap:12px;border:1px solid #eee;border-radius:8px;padding:12px;align-items:center;position:relative}
.game-line .thumb{flex:0 0 108px;width:108px;height:108px;border-radius:10px;overflow:hidden}
.game-line .thumb img{width:100%;height:100%;object-fit:contain}
.game-line .line-info{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.game-line .line-title{font-size:18px;font-weight:600;color:#333;margin-bottom:4px;display:flex;align-items:center}
.game-line .line-desc{font-size:14px;color:#999;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-height:1.4}
.game-line .score{margin-left:8px;color:#ff6900;font-weight:bold;font-size:14px}
.game-line .bigimg{width:390px;max-width:45%;aspect-ratio:16/9;border-radius:8px;overflow:hidden;background:#f5f5f5;flex:0 0 auto;margin-left:auto}
.game-line .bigimg img{width:100%;height:100%;object-fit:cover}

.mi-footer .depict,.mi-footer .footer-depict-copy{text-align:center;font-size:12px;line-height:1.5;color:#666;padding:20px 0}

/* 今日热游模块样式 */
.hot-games-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 800px;
}

.hot-game-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.hot-game-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hot-game-media {
  position: relative;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hot-game-cover {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f5f5;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hot-game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.hot-game-name {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}

/* Consolidated Score Button Styles */
.hot-game-score-btn, .game-score-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  font-size: 18px;
  font-weight: 800;
  color: #E60012;
  background: #FFF0F0;
  border: 1px solid #FFD6D6;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(230,0,18,0.1);
  position: relative;
}

.hot-game-score-btn:hover, .game-score-btn:hover {
  background: #E60012;
  color: #fff;
  border-color: #E60012;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230,0,18,0.25);
}

.hot-game-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hot-game-intro {
  font-size: 14px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
}

.hot-game-tags, .game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

/* Consolidated Tag Styles */
.hot-game-tag, .game-tag {
  height: 20px;
  padding: 0 8px;
  background: #F5F5F5;
  color: #555;
  border-radius: 10px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
}

.hot-game-tag:hover, .game-tag:hover {
  background: #e8e8e8;
  text-decoration: none;
  color: #555;
}

/* Unified Mobile Styles */
@media (max-width: 1024px) {
  .game-line .bigimg {
    width: 300px;
    max-width: 40%;
  }
}

@media (max-width: 768px) {
  /* Game Line Mobile */
  .game-line .thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
  .game-line .bigimg {
    display: none;
  }
  .line-title {
    font-size: 16px;
  }

  /* Hot Game Mobile */
  .hot-game-item {
    padding: 10px;
    gap: 10px;
  }
  .hot-game-media {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
  .hot-game-cover {
    width: 60px;
    height: 60px;
  }
  
  /* Shared Mobile Styles */
  .hot-game-score-btn, .game-score-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}