/* ==========================================================
   World Cup Guess V2 - 体育赛事转播风格
   主色: 深黑 #0a0e1a / 金 #FFB800 / 草坪绿 #10b981 / 信号红 #ef4444
   ========================================================== */

:root {
  --c-bg:        #f3f5f8;
  --c-bg-dark:   #0a0e1a;
  --c-bg2:       #131929;
  --c-card:      #ffffff;
  --c-card-soft: #f5f7fb;
  --c-text:      #0f172a;
  --c-text-2:    #475569;
  --c-text-3:    #94a3b8;
  --c-primary:   #ffb800;
  --c-primary2:  #ffd23f;
  --c-secondary: #0a78d6;
  --c-success:   #10b981;
  --c-danger:    #ef4444;
  --c-warning:   #f59e0b;
  --c-line:      #e2e8f0;
  --c-line2:     #cbd5e1;
  --c-pitch:     #2d7a3e;
  --shadow-sm:   0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow:      0 4px 16px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg:   0 20px 50px rgba(15,23,42,.15), 0 8px 16px rgba(15,23,42,.08);
  --shadow-glow: 0 0 30px rgba(255,184,0,.4);
  --radius:      16px;
  --radius-sm:   10px;
  --font:        "Inter","PingFang SC","Microsoft YaHei",-apple-system,BlinkMacSystemFont,sans-serif;
  --font-num:    "Inter","Roboto Mono",ui-monospace,monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--c-secondary); text-decoration: none; }
a:hover { text-decoration: none; }
button { font-family: inherit; }

/* ===== 顶部导航(深色赛事风) ===== */
.wcg-nav {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(135deg, #0a0e1a 0%, #131929 100%);
  color: #fff;
  border-bottom: 3px solid var(--c-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.wcg-nav::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-primary), transparent);
}
.wcg-nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
}
.wcg-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff !important; font-weight: 800; letter-spacing: .02em;
}
.wcg-logo-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: linear-gradient(135deg, var(--c-primary), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 0 16px rgba(255,184,0,.4);
}
.wcg-logo-text { font-size: 16px; }
.wcg-logo-text em { color: var(--c-primary); font-style: normal; }
.wcg-logo-text small { display: block; font-size: 10px; font-weight: 500; color: #94a3b8; letter-spacing: .15em; }

.wcg-nav-links { display: flex; gap: 4px; margin-left: 20px; }
.wcg-nav-links a {
  color: #c4d2e6 !important; padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: all .2s; position: relative;
}
.wcg-nav-links a:hover { background: rgba(255,255,255,.06); color: #fff !important; }
.wcg-nav-links a.active {
  background: var(--c-primary); color: #0a0e1a !important; font-weight: 700;
}
.wcg-nav-links a.active::after {
  content: ''; position: absolute; left: 50%; bottom: -10px;
  width: 6px; height: 6px; background: var(--c-primary);
  transform: translateX(-50%) rotate(45deg);
}
.wcg-nav-user { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.wcg-chip {
  background: rgba(255,184,0,.15); color: var(--c-primary);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,184,0,.2);
}
.wcg-chip.muted { background: rgba(255,255,255,.06); color: #94a3b8; border-color: transparent; }

/* ===== 主体 ===== */
.wcg-main { min-height: calc(100vh - 200px); }

/* ============================================================
   HERO - 体育赛事转播风
   ============================================================ */
.wcg-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,14,26,.3) 0%, rgba(10,14,26,.95) 100%),
    url('img/banner/pitch.png') center/cover no-repeat;
  color: #fff;
  padding: 80px 24px 100px;
  overflow: hidden;
  min-height: 600px;
}
.wcg-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,184,0,.15), transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(16,185,129,.12), transparent 50%);
  pointer-events: none;
}
.wcg-hero-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.wcg-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,184,0,.15); color: var(--c-primary);
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: .15em; border: 1px solid rgba(255,184,0,.3);
}
.wcg-hero-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-primary); box-shadow: 0 0 8px var(--c-primary);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.wcg-hero h1 {
  font-size: 64px; line-height: 1.05; margin: 24px 0 16px; font-weight: 900;
  letter-spacing: -.02em; text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.wcg-hero h1 em {
  color: var(--c-primary); font-style: normal;
  background: linear-gradient(135deg, var(--c-primary), #ff6b00);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wcg-hero p {
  color: #c4d2e6; font-size: 17px; max-width: 520px; line-height: 1.7;
  margin-bottom: 32px;
}
.wcg-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.wcg-hero-art {
  position: relative; height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.wcg-hero-art img {
  max-height: 100%; filter: drop-shadow(0 20px 40px rgba(255,184,0,.4))
    drop-shadow(0 0 80px rgba(255,184,0,.2));
  animation: float-trophy 4s ease-in-out infinite;
}
@keyframes float-trophy {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* 滚动条 (Live ticker) */
.wcg-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,184,0,.2);
  padding: 10px 0; overflow: hidden;
  display: flex; align-items: center;
}
.wcg-ticker-label {
  flex-shrink: 0; padding: 0 16px;
  background: var(--c-danger); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  height: 28px; line-height: 28px;
  display: flex; align-items: center; gap: 6px;
  position: relative; z-index: 1;
}
.wcg-ticker-label::after {
  content: ''; position: absolute; right: -14px; top: 0;
  width: 0; height: 0;
  border: 14px solid transparent; border-left-color: var(--c-danger);
}
.wcg-ticker-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; animation: blink 1.5s infinite;
}
.wcg-ticker-track {
  display: flex; gap: 40px; animation: ticker 40s linear infinite;
  white-space: nowrap; padding-left: 24px;
}
.wcg-ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: #c4d2e6;
}
.wcg-ticker-item strong { color: var(--c-primary); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero 统计条 */
.wcg-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 32px; max-width: 520px;
}
.wcg-hero-stat {
  background: rgba(255,255,255,.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.wcg-hero-stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--c-primary), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.wcg-hero-stat-val { font-size: 22px; font-weight: 900; line-height: 1; }
.wcg-hero-stat-lbl { font-size: 11px; color: #94a3b8; margin-top: 2px; letter-spacing: .05em; }

/* ============================================================
   USERID 卡 (浮在 hero 底部)
   ============================================================ */
.wcg-id-wrap {
  max-width: 1280px; margin: -60px auto 0; padding: 0 24px;
  position: relative; z-index: 5;
}
.wcg-id-card {
  background: #fff; border-radius: 20px; padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
  border: 1px solid var(--c-line);
}
.wcg-id-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--c-primary), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; flex-shrink: 0; box-shadow: 0 8px 20px rgba(255,184,0,.3);
}
.wcg-id-text h3 { margin: 0 0 4px; font-size: 17px; font-weight: 800; }
.wcg-id-text p { margin: 0; color: var(--c-text-3); font-size: 13px; }
.wcg-id-form { display: flex; gap: 10px; align-items: center; }
.wcg-input {
  padding: 12px 16px; border: 2px solid var(--c-line);
  border-radius: var(--radius-sm); font-size: 16px; font-family: inherit;
  transition: all .2s; background: #fff; min-width: 200px;
  font-family: var(--font-num); font-weight: 700;
}
.wcg-input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(255,184,0,.15); }
.wcg-input.is-error { border-color: var(--c-danger); }
.wcg-id-msg { margin-top: 8px; font-size: 12px; min-height: 16px; grid-column: 1/-1; }
.wcg-id-msg.error { color: var(--c-danger); }
.wcg-id-msg.success { color: var(--c-success); }

/* ============================================================
   容器
   ============================================================ */
.wcg-container { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.wcg-section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.wcg-section-title {
  font-size: 28px; font-weight: 900; color: var(--c-text); margin: 0;
  display: flex; align-items: center; gap: 12px;
  letter-spacing: -.01em;
}
.wcg-section-title::before {
  content: ''; display: block; width: 5px; height: 28px;
  background: linear-gradient(180deg, var(--c-primary), #ff6b00);
  border-radius: 3px;
}
.wcg-section-sub { color: var(--c-text-3); font-size: 13px; }

/* ============================================================
   按钮
   ============================================================ */
.wcg-btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 11px 22px; border: 0; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .2s; text-decoration: none !important;
  letter-spacing: .02em;
}
.wcg-btn-primary {
  background: linear-gradient(135deg, var(--c-primary), #ff6b00);
  color: #0a0e1a;
  box-shadow: 0 4px 12px rgba(255,184,0,.3);
}
.wcg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,184,0,.4);
}
.wcg-btn-secondary { background: var(--c-bg2); color: #fff; }
.wcg-btn-secondary:hover { background: #1a2238; }
.wcg-btn-ghost { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-line2); }
.wcg-btn-ghost:hover { background: var(--c-card-soft); border-color: var(--c-text-2); }
.wcg-btn-success { background: var(--c-success); color: #fff; }
.wcg-btn-success:hover { background: #0e9e6e; }
.wcg-btn-lg { padding: 15px 32px; font-size: 16px; }
.wcg-btn-sm { padding: 7px 14px; font-size: 12px; }
.wcg-btn-block { display: flex; width: 100%; }

/* ============================================================
   日期 tabs (横向滚动)
   ============================================================ */
.wcg-date-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: thin; margin-bottom: 24px;
}
.wcg-date-tabs::-webkit-scrollbar { height: 4px; }
.wcg-date-tabs::-webkit-scrollbar-thumb { background: var(--c-line2); border-radius: 2px; }
.wcg-date-tab {
  flex-shrink: 0; padding: 10px 18px; border-radius: 12px;
  background: #fff; border: 1.5px solid var(--c-line);
  color: var(--c-text-2); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .15s; text-decoration: none !important;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 64px;
}
.wcg-date-tab:hover { border-color: var(--c-primary); color: var(--c-text); transform: translateY(-1px); }
.wcg-date-tab-d { font-size: 16px; font-weight: 900; }
.wcg-date-tab-w { font-size: 10px; color: var(--c-text-3); }
.wcg-date-tab.active {
  background: linear-gradient(135deg, var(--c-bg2), #1a2238);
  color: #fff; border-color: var(--c-bg2);
}
.wcg-date-tab.active .wcg-date-tab-w { color: var(--c-primary); }

/* ============================================================
   比赛卡 - 转播比分卡
   ============================================================ */
.wcg-match-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.wcg-match-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  transition: all .25s; position: relative;
  display: flex; flex-direction: column;
}
.wcg-match-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary);
}
.wcg-match-head {
  background: linear-gradient(135deg, var(--c-bg-dark) 0%, #1a2238 100%);
  color: #fff; padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.wcg-match-no { font-weight: 700; color: var(--c-primary); letter-spacing: .05em; }
.wcg-match-stage { color: #94a3b8; font-size: 11px; }
.wcg-match-stage b { color: #fff; font-weight: 700; }

.wcg-match-body {
  padding: 24px 20px; position: relative;
  background:
    linear-gradient(180deg, rgba(45,122,62,.03) 0%, transparent 100%);
}
.wcg-teams {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.wcg-team {
  flex: 1; text-align: center; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.wcg-team-flag {
  font-size: 48px; line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.wcg-team-name {
  font-size: 14px; font-weight: 800; color: var(--c-text); line-height: 1.2;
  max-width: 110px; overflow: hidden; text-overflow: ellipsis;
}
.wcg-team-code {
  font-size: 10px; color: var(--c-text-3); letter-spacing: .12em;
  background: var(--c-card-soft); padding: 2px 6px; border-radius: 3px;
  font-family: var(--font-num); font-weight: 700;
}
.wcg-vs {
  flex-shrink: 0; text-align: center;
  font-family: var(--font-num);
}
.wcg-vs-score {
  font-size: 32px; font-weight: 900; color: var(--c-text);
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--c-bg-dark), #1a2238);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wcg-vs-score small { font-size: 16px; color: var(--c-text-3); font-weight: 600; padding: 0 2px; }
.wcg-vs-label { font-size: 11px; color: var(--c-text-3); font-weight: 700; letter-spacing: .1em; }
.wcg-vs-time {
  font-size: 13px; color: var(--c-text-2); font-weight: 700;
  background: var(--c-card-soft); padding: 4px 10px; border-radius: 6px;
  font-family: var(--font-num);
}

.wcg-match-foot {
  padding: 12px 20px; background: var(--c-card-soft);
  border-top: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--c-text-3);
}
.wcg-match-foot-loc { display: flex; align-items: center; gap: 4px; }

/* 状态灯 */
.wcg-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .05em;
}
.wcg-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
}
.wcg-badge.live {
  background: var(--c-danger); color: #fff;
  animation: pulse 1.5s infinite;
}
.wcg-badge.live::before { background: #fff; }
.wcg-badge.finished { background: var(--c-text-3); color: #fff; }
.wcg-badge.finished::before { background: #fff; }
.wcg-badge.timed { background: rgba(10,120,214,.12); color: var(--c-secondary); }
.wcg-badge.timed::before { background: var(--c-secondary); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .7; } }

/* 竞猜按钮组 */
.wcg-pick-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  padding: 16px 20px; background: #fff;
}
.wcg-pick {
  border: 2px solid var(--c-line); background: #fff;
  padding: 12px 4px; border-radius: var(--radius-sm);
  text-align: center; cursor: pointer;
  transition: all .2s; position: relative; overflow: hidden;
}
.wcg-pick-label { display: block; font-size: 13px; font-weight: 800; color: var(--c-text); }
.wcg-pick-sub { display: block; font-size: 10px; color: var(--c-text-3); margin-top: 2px; letter-spacing: .05em; }
.wcg-pick:hover { border-color: var(--c-primary); transform: translateY(-2px); }
.wcg-pick:hover .wcg-pick-label { color: var(--c-primary); }
.wcg-pick.selected {
  background: linear-gradient(135deg, var(--c-primary), #ff6b00);
  border-color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(255,184,0,.4);
}
.wcg-pick.selected .wcg-pick-label { color: #0a0e1a; }
.wcg-pick.selected .wcg-pick-sub { color: rgba(10,14,26,.7); }
.wcg-pick[disabled] { opacity: .5; cursor: not-allowed; }

.wcg-pick-action {
  padding: 0 20px 20px; background: #fff;
}
.wcg-pick-action .wcg-btn { width: 100%; }

/* 用户已竞猜标识 */
.wcg-my-guess {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 800;
}
.wcg-my-guess.PENDING { background: rgba(245,158,11,.15); color: var(--c-warning); }
.wcg-my-guess.WIN     { background: rgba(16,185,129,.15); color: var(--c-success); }
.wcg-my-guess.LOSE    { background: rgba(239,68,68,.12); color: var(--c-danger); }
.wcg-my-guess.CANCELLED { background: rgba(148,163,184,.2); color: var(--c-text-3); }

/* ============================================================
   提示
   ============================================================ */
.wcg-toast {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: var(--c-bg2); color: #fff; padding: 12px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 600; z-index: 1000; opacity: 0; pointer-events: none;
  box-shadow: var(--shadow-lg); transition: all .25s;
  display: flex; align-items: center; gap: 8px;
  max-width: 90vw;
}
.wcg-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.wcg-toast.success { background: var(--c-success); }
.wcg-toast.error { background: var(--c-danger); }

/* ============================================================
   空状态 / 列表卡
   ============================================================ */
.wcg-empty {
  text-align: center; padding: 80px 20px; color: var(--c-text-3);
  background: #fff; border-radius: var(--radius); border: 2px dashed var(--c-line);
}
.wcg-empty-emoji { font-size: 80px; margin-bottom: 16px; opacity: .6; }
.wcg-empty-text { font-size: 15px; }

.wcg-list-card {
  background: #fff; border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-line);
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
  align-items: center; margin-bottom: 12px;
  transition: all .2s;
}
.wcg-list-card:hover { box-shadow: var(--shadow); transform: translateX(2px); }
.wcg-list-card .teams { font-size: 15px; font-weight: 700; }
.wcg-list-card .meta { font-size: 12px; color: var(--c-text-3); margin-top: 4px; }
.wcg-list-card .right { text-align: right; }
.wcg-list-card .right .pick { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.wcg-list-card .right .pickcode {
  display: inline-block; padding: 3px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 800; margin-right: 4px;
  font-family: var(--font-num);
}
.wcg-list-card .right .pickcode.HOME { background: rgba(10,120,214,.15); color: var(--c-secondary); }
.wcg-list-card .right .pickcode.DRAW { background: rgba(245,158,11,.15); color: var(--c-warning); }
.wcg-list-card .right .pickcode.AWAY { background: rgba(239,68,68,.15); color: var(--c-danger); }

/* 排行榜 */
.wcg-rank-list { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.wcg-rank-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 24px;
  border-bottom: 1px solid var(--c-line);
  transition: background .2s;
}
.wcg-rank-item:hover { background: var(--c-card-soft); }
.wcg-rank-item:last-child { border-bottom: 0; }
.wcg-rank-num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: #fff;
  background: var(--c-text-3);
  font-family: var(--font-num);
}
.wcg-rank-item:nth-child(1) .wcg-rank-num { background: linear-gradient(135deg,#FFD700,#FFA500); box-shadow: 0 0 16px rgba(255,215,0,.4); }
.wcg-rank-item:nth-child(2) .wcg-rank-num { background: linear-gradient(135deg,#E0E0E0,#A0A0A0); }
.wcg-rank-item:nth-child(3) .wcg-rank-num { background: linear-gradient(135deg,#CD7F32,#8B4513); }
.wcg-rank-user { flex: 1; font-weight: 700; font-family: var(--font-num); }
.wcg-rank-stat { font-size: 12px; color: var(--c-text-3); }
.wcg-rank-stat strong { color: var(--c-text); font-size: 15px; font-family: var(--font-num); }

/* 页脚 */
.wcg-footer {
  background: var(--c-bg-dark); color: #94a3b8; padding: 32px 24px;
  margin-top: 60px; font-size: 13px;
}
.wcg-footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.wcg-footer a { color: #c4d2e6; }

/* 工具类 */
.wcg-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.wcg-row-spread { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.wcg-text-muted { color: var(--c-text-3); }
.wcg-text-center { text-align: center; }
.wcg-hide-mobile { display: block; }

/* 响应式 */
@media (max-width: 1024px) {
  .wcg-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .wcg-hero-art { display: none; }
  .wcg-hero h1 { font-size: 42px; }
  .wcg-hero p { margin: 0 auto 24px; }
  .wcg-hero-actions { justify-content: center; }
  .wcg-hero-stats { margin: 24px auto 0; }
}
@media (max-width: 768px) {
  .wcg-nav-inner { gap: 8px; padding: 10px 14px; }
  .wcg-nav-links { display: none; }
  .wcg-logo-text small { display: none; }
  .wcg-hero { padding: 50px 16px 100px; min-height: 0; }
  .wcg-hero h1 { font-size: 32px; }
  .wcg-id-wrap { margin: -40px 12px 0; padding: 0; }
  .wcg-id-card { grid-template-columns: 1fr; gap: 16px; padding: 20px; text-align: center; }
  .wcg-id-icon { margin: 0 auto; }
  .wcg-id-form { flex-direction: column; }
  .wcg-id-form .wcg-input { width: 100%; min-width: 0; }
  .wcg-id-form .wcg-btn { width: 100%; }
  .wcg-match-grid { grid-template-columns: 1fr; }
  .wcg-team-flag { font-size: 36px; }
  .wcg-vs-score { font-size: 24px; }
  .wcg-hero-stats { grid-template-columns: 1fr; }
  .wcg-ticker-track { animation-duration: 25s; }
  .wcg-container { padding: 24px 14px; }
}
