/* =========================================
   直播频道样式 live.css
   ========================================= */
.lv-hero {
  background: linear-gradient(135deg, #0d3d21 0%, #1a6b3a 50%, #0d3d21 100%);
  padding: 50px 0; position: relative; overflow: hidden; margin-bottom: 28px;
}
.lv-hero-inner { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.lv-hero-content { flex: 1; }
.lv-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 12px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.2); }
.lv-hero-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #e53935; display: inline-block; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
.lv-hero h1 { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.lv-hero p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.lv-hero-stats { display: flex; gap: 28px; }
.lv-hero-stat { text-align: center; }
.lv-hero-stat strong { display: block; font-size: 24px; color: #2d9b5a; font-weight: 800; }
.lv-hero-stat span { font-size: 12px; color: rgba(255,255,255,0.55); }
.lv-hero-visual { flex-shrink: 0; }

.lv-section { margin-bottom: 36px; }
.lv-current { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 0 30px rgba(229,57,53,0.15); margin-bottom: 28px; }
.lv-c-header { padding: 16px 20px; background: var(--accent-red); color: #fff; display: flex; align-items: center; gap: 10px; }
.lv-c-live { display: flex; align-items: center; gap: 6px; font-weight: 700; }
.lv-c-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse-dot 1s infinite; }
.lv-c-title { flex: 1; font-size: 14px; }
.lv-c-viewers { font-size: 12px; }
.lv-c-body { padding: 20px; display: flex; gap: 24px; }
.lv-c-player { width: 480px; height: 270px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lv-c-play-btn { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; cursor: pointer; border: 2px solid rgba(255,255,255,0.4); font-size: 24px; color: #fff; }
.lv-c-info { flex: 1; }
.lv-c-info h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.lv-c-info p { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 10px; }
.lv-c-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 14px; }

.lv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.lv-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: all 0.3s; }
.lv-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.lv-card-thumb { height: 160px; position: relative; display: flex; align-items: center; justify-content: center; }
.lv-card-play { width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; cursor: pointer; }
.lv-card-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; padding: 2px 8px; border-radius: 4px; }
.lv-card-badge.live { background: var(--accent-red); color: #fff; }
.lv-card-badge.upcoming { background: var(--accent); color: #fff; }
.lv-card-badge.replay { background: rgba(0,0,0,0.5); color: #fff; }
.lv-card-duration { position: absolute; bottom: 10px; right: 10px; font-size: 10px; padding: 2px 6px; background: rgba(0,0,0,0.6); color: #fff; border-radius: 3px; }
.lv-card-body { padding: 14px 16px; }
.lv-card-body h4 { font-size: 14px; font-weight: 600; line-height: 1.5; margin-bottom: 6px; }
.lv-card-meta { font-size: 11px; color: var(--text-light); display: flex; gap: 10px; }

@media (max-width: 900px) {
  .lv-grid { grid-template-columns: 1fr 1fr; }
  .lv-c-body { flex-direction: column; }
  .lv-c-player { width: 100%; height: 200px; }
}
@media (max-width: 600px) {
  .lv-grid { grid-template-columns: 1fr; }
  .lv-hero-inner { flex-direction: column; }
  .lv-hero-visual { display: none; }
  .lv-hero-stats { flex-wrap: wrap; }
}
