/* ============================================================
   아마농구 통계 — 스포츠 미디어 스타일 디자인 시스템
   팔레트: 코트 네이비 + 오렌지, 디스플레이 숫자는 Oswald
   ============================================================ */
:root {
  --navy: #0e1a2b;
  --navy-2: #16263d;
  --navy-3: #1f3352;
  --ink: #16202c;
  --muted: #6b7787;
  --line: #e2e7ee;
  --bg: #eef1f5;
  --card: #ffffff;
  --accent: #f26b1d;
  --accent-dark: #cf5312;
  --accent-soft: #fff1e7;
  --gold: #d9a62a;
  --stripe: #f8fafc;
  --win: #0c7a41;
  --num: "Oswald", "Apple SD Gothic Neo", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 14.5px;
  line-height: 1.55;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---- 상단 네비게이션: 다크 스포츠 헤더 ---- */
.topnav {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(10, 20, 35, .35);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner { display: flex; align-items: stretch; gap: 26px; height: 58px; position: relative; }
.brand {
  display: flex; align-items: center;
  font-family: var(--num);
  font-weight: 700; font-size: 19px; letter-spacing: .04em;
  color: #fff; text-decoration: none;
}
.brand::after {
  content: "STATS"; margin-left: 7px; padding: 1px 7px;
  font-size: 11px; letter-spacing: .18em;
  background: var(--accent); color: #fff; border-radius: 3px;
}
.topnav nav { display: flex; gap: 2px; }
.topnav nav a {
  display: flex; align-items: center;
  color: #c3cddb; text-decoration: none;
  padding: 0 15px; font-weight: 700; font-size: 14px;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: color .15s;
}
.topnav nav a:hover { color: #fff; }
.topnav nav a.on { color: #fff; border-bottom-color: var(--accent); }

main { padding: 26px 20px 60px; }

/* ---- 네비 검색 ---- */
.nav-search { margin-left: auto; display: flex; align-items: center; }
.nav-search input {
  font: inherit; font-size: 13px; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 6px 16px; width: 150px;
  transition: width .2s, background .2s;
}
.nav-search input::placeholder { color: #8ea0b8; }
.nav-search input:focus { outline: none; width: 210px; background: rgba(255,255,255,.16); border-color: var(--accent); }

/* ---- 검색 결과 ---- */
.search-players { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }
.sp-card {
  display: flex; gap: 12px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; text-decoration: none; color: var(--ink);
  box-shadow: 0 1px 3px rgba(20,30,45,.05);
}
.sp-card:hover { border-color: var(--accent); }
.sp-name { font-weight: 800; }
.team-chip {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 13.5px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 16px; color: var(--ink); margin: 2px;
}
.team-chip:hover { border-color: var(--accent); color: var(--accent-dark); }

h2 { margin: 18px 0 12px; font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
h3 { margin: 28px 0 10px; font-size: 16px; font-weight: 800; }
h4 { margin: 12px 0 8px; font-size: 14px; }
.sec-title {
  margin: 30px 0 12px; font-size: 18px; font-weight: 800;
  padding-left: 11px; border-left: 4px solid var(--accent);
}

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.nowrap { white-space: nowrap; }
.crumb { margin: 6px 0 0; font-size: 12.5px; color: var(--muted); }
.more { font-size: 12.5px; font-weight: 600; margin-left: 8px; }

.badge {
  display: inline-block; font-size: 11px; font-weight: 800;
  background: var(--accent-soft); color: var(--accent-dark);
  border-radius: 3px; padding: 2px 8px; vertical-align: middle;
  letter-spacing: .03em;
}

/* 레벨 배지 */
.lvl {
  display: inline-block; font-size: 10px; font-weight: 800;
  border-radius: 3px; padding: 2px 7px; vertical-align: 1px;
  color: #fff; background: #5b6770; letter-spacing: .06em;
}
.lvl-대학, .lvl-남대부, .lvl-여대부 { background: #1f5f96; }
.lvl-남고부, .lvl-여고부 { background: #0c7a41; }
.lvl-남중부, .lvl-여중부 { background: #a97b0a; }
.lvl-디비전 { background: #6d4b9e; }
.lvl-3x3 { background: #b3541e; }
.lvl-D리그 { background: #8a1f2d; }

/* ---- 테이블 ---- */
.tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 1px 3px rgba(20, 30, 45, .05);
}
.tbl th, .tbl td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.tbl thead th {
  background: var(--navy);
  color: #cdd6e2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: none;
}
.tbl tbody tr:nth-child(even) { background: var(--stripe); }
.tbl tbody tr:hover { background: #eff4fa; }
.tbl tbody tr:last-child td { border-bottom: none; }
/* 표 안의 링크는 잉크색 — 주황 도배 방지 */
.tbl a:not(.score-link) { color: var(--ink); text-decoration: none; }
.tbl a:not(.score-link):hover { color: var(--accent-dark); text-decoration: underline; }
.tbl tr.year-sep td {
  background: #e8edf4; color: var(--navy);
  font-family: var(--num); font-weight: 700; font-size: 14px;
  letter-spacing: .08em; padding: 5px 12px;
  border-top: 1px solid var(--line);
}
.tbl .num { text-align: right; }
.tbl.compact th, .tbl.compact td { padding: 7px 10px; font-size: 13.5px; }
.tbl th.sorted { background: var(--accent-dark); color: #fff; }
.tbl td.sorted { background: var(--accent-soft); font-weight: 800; }
.tbl tr.total td {
  border-top: 2px solid var(--navy);
  background: #edf1f6 !important;
  font-weight: 700;
}

.win { font-weight: 800; color: var(--win); }
.starter { color: var(--accent); font-weight: 800; }
.score-link {
  font-family: var(--num); font-weight: 600; font-size: 14px;
  text-decoration: none; letter-spacing: .03em;
  background: var(--navy); color: #fff !important;
  border-radius: 5px; padding: 2px 9px; margin: 0 5px;
}
.score-link:hover { background: var(--accent-dark); }

.scroll-x { overflow-x: auto; }
.box { min-width: 720px; }

/* ---- 레이아웃 ---- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.standings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

/* ---- 탭 ---- */
.tabs {
  display: flex; gap: 5px; flex-wrap: wrap;
  margin: 16px 0 8px;
}
.tabs a {
  text-decoration: none; font-weight: 700; font-size: 13.5px;
  padding: 6px 16px; border-radius: 4px;
  border: 1px solid var(--line); color: var(--ink); background: var(--card);
}
.tabs a:hover { border-color: var(--accent); color: var(--accent-dark); }
.tabs a.on {
  background: var(--navy); border-color: var(--navy); color: #fff;
  box-shadow: inset 0 -3px 0 var(--accent);
}
.tabs.subtabs { margin-top: 6px; }
.tabs.subtabs a { font-size: 12.5px; padding: 4px 12px; border-radius: 14px; }
.tabs.subtabs a.on { background: var(--accent); border-color: var(--accent); box-shadow: none; }

/* ---- 필터 폼 ---- */
.filters {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: end;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 16px; margin: 12px 0 18px;
  font-size: 13px;
}
.filters label { display: flex; flex-direction: column; gap: 4px; color: var(--muted); font-weight: 700; }
.filters select, .filters input {
  font: inherit; color: var(--ink);
  padding: 6px 9px; border: 1px solid var(--line); border-radius: 6px;
  background: #fff; max-width: 340px;
}
.filters button {
  font: inherit; font-weight: 800; color: #fff; letter-spacing: .04em;
  background: var(--accent); border: none; border-radius: 6px;
  padding: 8px 20px; cursor: pointer;
}
.filters button:hover { background: var(--accent-dark); }

/* ---- 뉴스 ---- */
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
}
.news-list a { font-weight: 700; text-decoration: none; color: var(--ink); overflow-wrap: anywhere; }
.news-list a:hover { color: var(--accent-dark); }
.news-list .meta { font-size: 12px; margin-top: 2px; }
.news-list.big li { padding: 13px 16px; }
.news-list .summary { margin: 6px 0 0; font-size: 13.5px; color: #44505c; }

.footer {
  padding: 22px 20px 34px;
  color: var(--muted); font-size: 12px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   스코어보드 히어로 (경기 상세)
   ============================================================ */
.scoreboard {
  background:
    radial-gradient(circle at 50% 130%, rgba(242,107,29,.25), transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.03) 119px 120px),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 14px;
  color: #fff;
  padding: 26px 30px 22px;
  margin: 14px 0 20px;
  box-shadow: 0 8px 24px rgba(10, 20, 35, .25);
}
.sb-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 18px; align-items: center;
}
.sb-team { text-align: center; }
.sb-team a {
  color: #fff; text-decoration: none;
  font-size: 21px; font-weight: 800; letter-spacing: -.01em;
}
.sb-team a:hover { color: #ffb98a; }
.sb-team .sb-winner-tag {
  display: block; font-size: 10.5px; letter-spacing: .22em; margin-top: 3px;
  color: #7ee2a8; font-weight: 800;
}
.sb-score {
  font-family: var(--num); font-weight: 700; font-size: 58px;
  letter-spacing: .02em; line-height: 1;
  display: flex; gap: 16px; align-items: baseline;
}
.sb-score .sep { color: rgba(255,255,255,.35); font-size: 40px; }
.sb-score .lose { color: rgba(255,255,255,.55); }
.sb-meta {
  text-align: center; margin-top: 14px;
  color: #9fb0c6; font-size: 12.5px; letter-spacing: .03em;
}
.sb-meta a { color: #ffb98a; }
.sb-quarters { margin: 16px auto 0; max-width: 460px; width: 100%; }
.sb-quarters table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.sb-quarters th, .sb-quarters td {
  padding: 4px 10px; text-align: center; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.sb-quarters th {
  color: #8ea0b8; font-size: 10.5px; letter-spacing: .15em; font-weight: 700;
}
.sb-quarters td:first-child, .sb-quarters th:first-child { text-align: left; }
.sb-quarters td { font-family: var(--num); font-size: 15px; }
.sb-quarters tr:last-child td { border-bottom: none; }
.sb-quarters .ftot { color: #ffb98a; font-weight: 700; }

/* ============================================================
   포디움 / 하이라이트 카드
   ============================================================ */
.podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0 24px;
}
.podium-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 90%);
  border-radius: 14px;
  padding: 22px 16px 18px;
  text-align: center;
  color: #e8edf4;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 20, 35, .22);
}
.podium-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent 85%);
}
.podium-card.rank1::before { background: linear-gradient(90deg, var(--gold), #f5d47a 60%, transparent); }
.podium-card.rank2::before { background: linear-gradient(90deg, #aeb9c6, #dfe6ee 60%, transparent); }
.podium-card.rank3::before { background: linear-gradient(90deg, #c98a55, #e8b98e 60%, transparent); }
.podium-medal { position: absolute; top: 12px; left: 14px; font-size: 22px; }
.avatar, .monogram {
  width: 92px; height: 92px; border-radius: 50%;
  margin: 4px auto 10px; display: block;
}
.avatar {
  object-fit: cover; background: #fff;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 0 0 3px var(--accent);
}
.avatar.logo-img {
  object-fit: contain; padding: 8px;
  /* 학교 로고는 가로형 워드마크가 많아 원형 대신 둥근 사각형 */
  border-radius: 14px; background: #f6f8fb;
}
.monogram {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; font-weight: 800; letter-spacing: 1px;
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
.avatar.sm, .monogram.sm { width: 56px; height: 56px; font-size: 19px; margin: 0; }
.podium-name { font-size: 17px; font-weight: 800; margin-top: 2px; }
.podium-name a { color: #fff; text-decoration: none; }
.podium-name a:hover { color: #ffb98a; }
.podium-card .muted { color: #93a4bb; }
.podium-card .muted a { color: #b9c6d8; }
.podium-stat {
  font-family: var(--num); font-size: 44px; font-weight: 700;
  color: #ff9550; margin-top: 8px; line-height: 1;
}
.podium-stat .unit { font-size: 13px; font-weight: 600; color: #93a4bb; margin-left: 4px; font-family: "Noto Sans KR", sans-serif; }
.chips { margin-top: 9px; display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.chips span {
  font-size: 11px; font-weight: 700; color: #cdd6e2;
  background: rgba(255,255,255,.1); border-radius: 4px; padding: 2px 8px;
}
.logo-mini { width: 22px; height: 22px; object-fit: contain; vertical-align: -5px; margin-right: 6px; }

/* ---- 선수/팀 히어로 ---- */
.profile-head {
  display: flex; gap: 22px; align-items: center;
  background:
    radial-gradient(circle at 88% -20%, rgba(242,107,29,.35), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 14px; color: #fff;
  padding: 22px 26px; margin: 14px 0 18px;
  box-shadow: 0 8px 24px rgba(10, 20, 35, .25);
}
.profile-head .avatar, .profile-head .monogram { margin: 0; flex-shrink: 0; }
.profile-head h2 { color: #fff; }
.profile-head h2 .muted { color: #93a4bb; }
.profile-head h2 a { color: #ffb98a; text-decoration: none; }
.profile-head .chips { justify-content: flex-start; }
.photo-credit { font-size: 11px; color: #7f92ab; margin-top: 6px; }
.photo-credit a { color: #b9c6d8; }

/* ---- 스카우팅 히어로 (레이더) ---- */
.ana-hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px; align-items: center;
  background:
    radial-gradient(circle at 15% -30%, rgba(242,107,29,.4), transparent 55%),
    radial-gradient(circle at 110% 130%, rgba(61,109,168,.5), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 96% 100%, 0 100%);
  color: #e8edf4; padding: 26px 30px 34px; margin: 18px 0 22px;
  box-shadow: 0 10px 30px rgba(10,20,35,.3);
}
.ana-hero-num {
  position: absolute; right: 260px; top: 50%; transform: translateY(-52%);
  font-family: var(--num); font-weight: 700; font-size: 210px; line-height: 1;
  color: rgba(255,255,255,.05); pointer-events: none; user-select: none;
}
.ana-kicker { font-family: var(--num); font-size: 11px; letter-spacing: .35em; color: #ff9550; font-weight: 700; }
.ana-pool { color: #93a4bb; font-size: 12.5px; margin: 3px 0 12px; }
.ana-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.ana-tags .tag-strong { font-size: 13.5px; padding: 6px 15px; border-radius: 999px; box-shadow: 0 3px 10px rgba(242,107,29,.35); }
.ana-pcts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px 18px; max-width: 460px; }
.ana-pcts li { display: flex; flex-direction: column; }
.apc-label { font-size: 11px; color: #8ea0b8; letter-spacing: .06em; }
.ana-pcts strong { font-family: var(--num); font-size: 24px; line-height: 1.15; }
.ana-pcts em { font-style: normal; font-size: 11px; color: #93a4bb; }
.ana-pcts em.hot { color: #ff9550; font-weight: 800; }
.radar { width: 100%; max-width: 300px; }
.radar-ring { fill: none; stroke: rgba(255,255,255,.13); }
.radar-axis { stroke: rgba(255,255,255,.1); }
.radar-me {
  fill: rgba(242,107,29,.42); stroke: #ff8a3d; stroke-width: 2.5;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(242,107,29,.5));
}
.radar-lb { fill: #c3cddb; font-size: 11px; font-weight: 700; }

/* ---- 득점 흐름 ---- */
.flow-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; max-width: 720px; box-shadow: 0 1px 3px rgba(20,30,45,.05);
}
.flow-svg { width: 100%; display: block; }
.flow-zero { stroke: #aab6c4; stroke-width: 1.5; stroke-dasharray: 4 3; }
.flow-q { stroke: #e2e7ee; stroke-width: 1; }
.flow-qlb { font-size: 10px; fill: var(--muted); font-family: Oswald, sans-serif; }
.flow-line {
  fill: none; stroke: var(--accent); stroke-width: 2.5;
  stroke-linejoin: round; stroke-linecap: round;
  filter: drop-shadow(0 1px 3px rgba(242,107,29,.3));
}
.flow-team { font-size: 10.5px; font-weight: 700; }
.flow-team.a { fill: var(--accent-dark); }
.flow-team.b { fill: #1f5f96; }

/* ---- 하이라이트 스트립 ---- */
.hl-head { margin-top: 22px; }
.hl-strip {
  display: flex; gap: 12px; overflow-x: auto; padding: 4px 2px 10px;
  scrollbar-width: thin;
}
.hl-card {
  flex: 0 0 216px; text-decoration: none; color: var(--ink);
  border-radius: 12px; overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 1px 4px rgba(20,30,45,.07);
  transition: transform .15s, box-shadow .15s;
}
.hl-card:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(20,30,45,.16); }
.hl-card.shorts { flex-basis: 150px; }
.hl-thumb { position: relative; aspect-ratio: 16/9; background: var(--navy); }
.hl-card.shorts .hl-thumb { aspect-ratio: 9/12; }
.hl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hl-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; text-shadow: 0 2px 10px rgba(0,0,0,.7);
  background: linear-gradient(180deg, transparent 55%, rgba(10,20,35,.55));
  opacity: .9;
}
.hl-tag {
  position: absolute; top: 8px; left: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  background: #ff0033; color: #fff; border-radius: 4px; padding: 2px 7px;
}
.hl-title {
  padding: 8px 11px 10px; font-size: 12.5px; font-weight: 700; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 44px;
}

/* ---- 베스트 파트너 ---- */
.partner-card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,166,42,.35), transparent 55%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 16px; color: #e8edf4;
  padding: 16px 22px; margin: 0 0 16px; max-width: 640px;
  box-shadow: 0 6px 18px rgba(10,20,35,.25);
  border-left: 4px solid var(--gold);
}
.partner-kicker {
  font-family: var(--num); font-size: 11px; letter-spacing: .3em;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.partner-kicker span { color: #93a4bb; letter-spacing: .05em; margin-left: 8px; font-family: "Noto Sans KR", sans-serif; font-weight: 600; }
.partner-body { display: flex; gap: 18px; align-items: center; }
.partner-duo { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.partner-duo .avatar, .partner-duo .monogram { box-shadow: 0 0 0 2px rgba(255,255,255,.35); }
.partner-amp { font-family: var(--num); font-size: 20px; color: var(--gold); font-weight: 700; }
.partner-name a { color: #fff; font-size: 19px; font-weight: 800; text-decoration: none; }
.partner-name a:hover { color: #ffd98a; }
.partner-ev { font-size: 13px; color: #b9c6d8; margin-top: 3px; }
.partner-ev strong { color: #ffd98a; }
.partner-runners { margin-top: 5px; color: #7f92ab; }

/* ---- 강점/약점 카드 ---- */
.sw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; margin: 0 0 16px; }
.sw-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; box-shadow: 0 1px 4px rgba(20,30,45,.06);
}
.sw-card h4 { margin: 0 0 10px; font-size: 14px; }
.sw-plus { border-top: 4px solid var(--win); }
.sw-plus h4 { color: var(--win); }
.sw-minus { border-top: 4px solid #b3413f; }
.sw-minus h4 { color: #b3413f; }
.sw-card ul { list-style: none; margin: 0; padding: 0; }
.sw-card li { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.sw-card li:last-child { border-bottom: none; }
.sw-card li strong { display: block; font-size: 14px; }
.sw-card li span { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ---- 네비 드롭다운 ---- */
.nav-more { position: relative; display: flex; }
.nav-more > a { display: flex; align-items: center; color: #c3cddb; text-decoration: none; padding: 0 15px; font-weight: 700; font-size: 14px; border-bottom: 3px solid transparent; margin-bottom: -3px; }
.nav-more.on > a, .nav-more:hover > a { color: #fff; }
.nav-more.on > a { border-bottom-color: var(--accent); }
.nav-drop {
  display: none; position: absolute; top: 100%; left: 0; min-width: 170px;
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.12);
  border-radius: 0 0 10px 10px; padding: 6px 0; z-index: 60;
  box-shadow: 0 10px 24px rgba(10,20,35,.4);
}
.nav-more:hover .nav-drop { display: block; }
.nav-drop a {
  display: block; padding: 8px 16px; color: #c3cddb; text-decoration: none;
  font-weight: 600; font-size: 13.5px; border-bottom: none !important; margin: 0 !important;
}
.nav-drop a:hover, .nav-drop a.on { color: #fff; background: rgba(242,107,29,.18); }
.muted-sec { border-left-color: #8ea0b8; }

/* ---- 핫존/도넛 ---- */
.hotzone { width: 100%; display: block; border-radius: 10px; }
.hz-ft { margin: 10px 0 0; text-align: center; font-size: 13.5px; }
.donut-wrap { display: flex; gap: 16px; align-items: center; }
.donut { width: 150px; flex-shrink: 0; }
.donut-big { font-family: var(--num); font-size: 26px; font-weight: 700; fill: var(--ink); }
.donut-sub { font-size: 9px; fill: var(--muted); }
.donut-legend { list-style: none; margin: 0; padding: 0; }
.donut-legend li { display: flex; align-items: center; gap: 7px; margin: 5px 0; font-size: 13.5px; }
.donut-legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }

@media (max-width: 800px) {
  .ana-hero { grid-template-columns: 1fr; }
  .ana-hero-num { right: 10px; font-size: 140px; }
  .radar { margin: 0 auto; }
}

/* ---- 선수 분석 ---- */
.award-strip { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 4px; }
.award-badge {
  font-size: 12px; font-weight: 700; color: #6b4c00;
  background: linear-gradient(180deg, #fff7e0, #fdeebc);
  border: 1px solid #e3c76a; border-radius: 6px; padding: 3px 10px;
}
.tag-strong {
  font-size: 12.5px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 6px; padding: 4px 12px;
}
.pct-grid { max-width: 640px; margin: 8px 0 16px; }
.pct-row { display: grid; grid-template-columns: 66px 1fr 140px; gap: 10px; align-items: center; margin: 5px 0; }
.pct-label { font-size: 12.5px; font-weight: 700; color: var(--muted); text-align: right; }
.pct-bar { height: 12px; background: #e6ebf2; border-radius: 6px; overflow: hidden; }
.pct-fill { height: 100%; background: linear-gradient(90deg, var(--navy-3), #3d6da8); border-radius: 6px; }
.pct-fill.hot { background: linear-gradient(90deg, var(--accent-dark), var(--accent)); }
.pct-val { font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; }
.ana-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; max-width: 980px; }
.ana-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; box-shadow: 0 1px 3px rgba(20,30,45,.05);
}
.ana-card h4 { margin: 0 0 10px; }
.qbar-row, .form-row { display: flex; gap: 10px; align-items: flex-end; }
.qbar-col, .form-col { flex: 1; text-align: center; }
.qbar-wrap { height: 90px; background: #f0f3f7; border-radius: 6px; display: flex; align-items: flex-end; }
.qbar-wrap.sm { height: 56px; }
.qbar { width: 100%; background: linear-gradient(180deg, var(--accent), var(--accent-dark)); border-radius: 6px 6px 0 0; min-height: 3px; }
.qbar-share { font-family: var(--num); font-weight: 700; margin-top: 4px; }
.form-pts { font-family: var(--num); font-size: 12px; font-weight: 600; margin-top: 3px; color: var(--muted); }

/* ---- 커리어 타임라인 ---- */
.career-flow { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; margin: 10px 0 4px; }
.career-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  border-top: 3px solid var(--navy);
  padding: 10px 16px; min-width: 140px;
  box-shadow: 0 1px 3px rgba(20,30,45,.06);
}
.career-card.now { border-top-color: var(--accent); background: var(--accent-soft); }
.career-card.pro {
  border-top-color: var(--gold);
  background: linear-gradient(160deg, var(--navy), var(--navy-3));
  color: #e8edf4;
}
.career-card.pro .muted { color: #93a4bb; }
.pro-badge {
  font-family: var(--num); font-size: 10px; font-weight: 700; letter-spacing: .12em;
  background: var(--gold); color: var(--navy); border-radius: 3px;
  padding: 1px 6px; margin-left: 6px; vertical-align: 2px;
}
.career-card .career-team a { text-decoration: none; }
.career-arrow { align-self: center; color: var(--accent); font-weight: 800; font-size: 18px; }

/* ---- 홈 리포트 배너 ---- */
.report-banner {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-3) 70%);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px; margin: 18px 0; text-decoration: none; color: #dfe6ee;
  box-shadow: 0 4px 14px rgba(10,20,35,.2);
}
.report-banner .badge { background: var(--gold); color: var(--navy); }
.report-banner strong { color: #fff; }
.report-banner .muted { color: #93a4bb; }
.report-banner .more { color: #ffb98a; margin-left: auto; }
.report-banner:hover { border-left-color: var(--accent); }

.up-div { margin: 16px 0 6px; }

/* ---- 경기 매치업 리스트 (홈/대회 사이드바) ---- */
.games-list { display: flex; flex-direction: column; gap: 6px; }
.mrow {
  display: grid;
  grid-template-columns: 36px 66px minmax(0,1fr) 58px minmax(0,1fr);
  align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 9px;
  padding: 8px 12px; text-decoration: none; color: var(--ink);
  box-shadow: 0 1px 2px rgba(20,30,45,.04);
}
.mrow:hover { border-color: var(--accent); color: var(--ink); }
.mrow .lvl { text-align: center; }
.mrow-dt { color: var(--muted); font-size: 11px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.mrow-team {
  font-weight: 600; font-size: 13px; color: #4a5561;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mrow-team.home { text-align: right; }
.mrow-team.won { font-weight: 800; color: var(--ink); }
.mrow-score {
  font-family: var(--num); font-weight: 600; font-size: 14px;
  text-align: center; background: var(--navy); color: #fff;
  border-radius: 5px; padding: 2px 4px; letter-spacing: .02em;
}
.mrow-score.vs { background: #e8edf4; color: var(--muted); font-size: 11px; font-weight: 700; }
.mrow.no-lvl { grid-template-columns: 66px minmax(0,1fr) 58px minmax(0,1fr); }

/* ---- 주간 리포트 (디자인판) ---- */
.rp-hero {
  background:
    radial-gradient(circle at 85% -30%, rgba(242,107,29,.4), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 16px; color: #fff;
  padding: 30px 34px 26px; margin: 16px 0 8px;
  box-shadow: 0 8px 24px rgba(10,20,35,.25);
}
.rp-kicker {
  font-family: var(--num); font-size: 12px; letter-spacing: .35em;
  color: #ff9550; font-weight: 700;
}
.rp-hero h1 {
  margin: 6px 0 16px; font-family: var(--num);
  font-size: 34px; font-weight: 700; letter-spacing: .02em;
}
.rp-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.rp-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 8px 18px; text-align: center;
}
.rp-chip strong { display: block; font-family: var(--num); font-size: 26px; color: #ff9550; line-height: 1.1; }
.rp-chip span { font-size: 11.5px; color: #9fb0c6; }

.rp-mvp { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,3fr); gap: 16px; align-items: start; }
@media (max-width: 800px) { .rp-mvp { grid-template-columns: 1fr; } }
.rp-mvp-card {
  display: flex; gap: 16px; align-items: center;
  background: linear-gradient(160deg, var(--navy), var(--navy-3));
  border-radius: 14px; padding: 18px 20px; color: #e8edf4;
  box-shadow: 0 6px 18px rgba(10,20,35,.22);
}
.rp-mvp-card .avatar, .rp-mvp-card .monogram { margin: 0; flex-shrink: 0; }
.rp-mvp-name a { color: #fff; text-decoration: none; font-size: 17px; font-weight: 800; }
.rp-mvp-name .muted { color: #93a4bb; }
.rp-mvp-stat { font-family: var(--num); font-size: 40px; font-weight: 700; color: #ff9550; line-height: 1.1; }
.rp-mvp-stat .unit { font-size: 13px; color: #93a4bb; margin-left: 4px; font-family: "Noto Sans KR", sans-serif; }
.rp-mvp-card .muted { color: #93a4bb; }

.rp-article {
  background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px; padding: 20px 26px; max-width: 860px;
  font-size: 15px; line-height: 1.75;
  box-shadow: 0 2px 8px rgba(20,30,45,.05);
}
.rp-article p { margin: 0 0 12px; }
.rp-article p:first-child { font-size: 16.5px; font-weight: 600; }
.rp-article p:last-child { margin-bottom: 0; }

.rp-leaders { display: grid; gap: 12px; }
.rp-leader-box {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 16px;
}
.rp-leader-box h4 { margin: 0 0 6px; font-size: 12px; color: var(--muted); letter-spacing: .08em; }
.rp-leader-box ol { margin: 0; padding-left: 20px; }
.rp-leader-box li { margin: 3px 0; font-size: 13.5px; }
.rp-num { float: right; font-family: var(--num); font-weight: 700; color: var(--accent-dark); }

.rp-div-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.rp-div-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; box-shadow: 0 1px 3px rgba(20,30,45,.05);
}
.rp-div-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.rp-scorer { font-size: 13.5px; padding: 6px 0; border-bottom: 1px dashed var(--line); margin-bottom: 6px; }
.rp-scorer a { text-decoration: none; color: var(--ink); }
.rp-mini-game { display: flex; gap: 8px; justify-content: space-between; font-size: 13px; padding: 4px 0; color: #4a5561; }
.rp-mini-game strong { font-family: var(--num); color: var(--ink); }
.rp-mini-game .won { font-weight: 800; color: var(--ink); }
.rp-mini-game.big { font-size: 16px; padding: 10px 0 2px; }

/* ---- 리포트 본문 ---- */
.report-body {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 28px 32px; max-width: 880px;
  box-shadow: 0 2px 8px rgba(20,30,45,.06);
}
.report-body table { border-collapse: collapse; margin: 10px 0; }
.report-body th, .report-body td { border: 1px solid var(--line); padding: 5px 10px; font-size: 13.5px; }
.report-body th { background: var(--navy); color: #fff; }
.report-body h1 { font-size: 24px; border-bottom: 3px solid var(--accent); padding-bottom: 8px; }
.report-body h2 { font-size: 18px; }

/* ---- 코트 존 차트 ---- */
.courts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px; max-width: 720px;
}
@media (max-width: 720px) { .courts { grid-template-columns: 1fr; } }
.court-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px 10px; box-shadow: 0 1px 3px rgba(20,30,45,.05);
}
.court-title { font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.court-svg { width: 100%; height: auto; display: block; }
.court-ft {
  text-align: center; font-size: 12.5px; color: var(--muted);
  padding: 7px 0 2px; border-top: 1px dashed var(--line); margin-top: 8px;
}

/* ---- 모바일 ---- */
@media (max-width: 720px) {
  body { font-size: 14px; }
  .container { padding: 0 12px; }
  .nav-inner { gap: 10px; height: auto; padding: 8px 0; flex-wrap: wrap; }
  /* 드롭다운이 화면 밖으로 잘리지 않게 네비 바 기준으로 배치 */
  .nav-more { position: static; }
  .nav-drop { left: auto; right: 8px; border-radius: 10px; }
  /* 넓은 표는 페이지 대신 표 자체가 좌우 스크롤 */
  .tbl { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
  .tbl th, .tbl td { white-space: nowrap; }
  .tbl td { max-width: 46vw; overflow: hidden; text-overflow: ellipsis; }
  .topnav nav { flex-wrap: wrap; }
  .topnav nav a { padding: 6px 10px; font-size: 13.5px; border-bottom-width: 2px; }
  main { padding: 14px 12px 44px; }
  .podium { grid-template-columns: 1fr; }
  .podium-card { display: grid; grid-template-columns: 92px 1fr; gap: 4px 16px; text-align: left; align-items: center; }
  .podium-card .avatar, .podium-card .monogram { grid-row: 1 / 5; }
  .chips { justify-content: flex-start; }
  .podium-stat { margin-top: 2px; }
  .sb-score { font-size: 38px; }
  .sb-team a { font-size: 16px; }
  .profile-head { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
  .filters { gap: 8px; }
  .filters label { flex: 1 1 45%; }
  .tbl th, .tbl td { padding: 6px 8px; font-size: 12.5px; }
}

.ct-cell { max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- MY팀 ---- */
.follow-btn {
  margin-left: auto; align-self: center; cursor: pointer;
  font: inherit; font-size: 13.5px; font-weight: 800; color: var(--navy);
  background: #fff; border: 1.5px solid var(--navy); border-radius: 20px;
  padding: 7px 16px; transition: all .15s;
}
.follow-btn:hover { background: #f2f5f9; }
.follow-btn.following {
  color: #fff; border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.page-head .sub { color: var(--muted); margin: 4px 0 0; }
.my-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px; margin-top: 16px;
}
.my-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 10px;
}
.my-card-head { display: flex; align-items: center; gap: 10px; }
.my-logo { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.my-card-title { display: flex; align-items: center; gap: 8px; min-width: 0; }
.my-card-title a { font-weight: 800; font-size: 16.5px; color: var(--ink); text-decoration: none; }
.my-remove {
  margin-left: auto; cursor: pointer; border: 0; background: none;
  color: var(--muted); font-size: 20px; line-height: 1; padding: 2px 6px;
}
.my-remove:hover { color: var(--accent-dark); }
.my-season { display: flex; align-items: baseline; gap: 10px; font-size: 13.5px; }
.my-season-year { color: var(--muted); font-weight: 700; }
.my-wl b { font-family: var(--num); font-size: 16px; }
.my-pfpa { color: var(--muted); }
.my-next {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: #fdf3ec; border: 1px dashed #efc4a8; border-radius: 8px;
  padding: 6px 10px; font-size: 13px;
}
.my-next-tag { font-weight: 800; color: var(--accent-dark); font-size: 12px; }
.my-recent { list-style: none; margin: 0; padding: 0; }
.my-recent li + li { border-top: 1px solid var(--line); }
.my-recent a {
  display: flex; align-items: center; gap: 9px; padding: 6px 2px;
  color: var(--ink); text-decoration: none; font-size: 13.5px;
}
.my-recent a:hover { background: #f6f8fb; }
.wl {
  font-style: normal; font-family: var(--num); font-weight: 700; font-size: 12px;
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.wl.w { background: #2e7d32; }
.wl.l { background: #b64545; }
.my-opp { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.my-score { font-family: var(--num); font-weight: 700; }
.my-date { color: var(--muted); font-size: 12px; }
.my-scorers { display: flex; gap: 8px; flex-wrap: wrap; border-top: 1px dashed var(--line); padding-top: 9px; }
.my-scorer {
  font-size: 12.5px; color: var(--ink); text-decoration: none;
  background: #f0f3f7; border-radius: 14px; padding: 4px 11px;
}
.my-scorer b { font-family: var(--num); }
.my-scorer small { color: var(--muted); margin-left: 2px; }
.my-scorer:hover { background: #e4eaf2; }
.my-empty { text-align: center; padding: 48px 16px; }
.my-empty-ball { font-size: 44px; }
.my-empty-search { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.my-empty-search input {
  font: inherit; padding: 9px 14px; border: 1px solid var(--line);
  border-radius: 8px; width: min(320px, 70vw);
}
.my-empty-search button {
  font: inherit; font-weight: 800; color: #fff; cursor: pointer;
  background: var(--navy); border: 0; border-radius: 8px; padding: 9px 18px;
}

/* ---- 홈 주간 영상 히어로 ---- */
.video-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 14px; padding: 16px 18px 18px; margin-bottom: 22px;
}
.video-hero .sec-title { color: #fff; margin-top: 0; }
.video-hero .sec-title .muted { color: #9fb0c6; }
.hl-strip.big .hl-card { flex-basis: 230px; }
.hl-strip.big .hl-card.shorts { flex-basis: 168px; }
.hl-strip.big .hl-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.hl-strip.big .hl-title { color: #e8edf4; }
.hl-date {
  position: absolute; right: 6px; bottom: 6px;
  font-family: var(--num); font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(10,18,30,.75); border-radius: 5px; padding: 2px 7px;
}
@media (max-width: 720px) {
  .video-hero { margin: 0 -12px 18px; border-radius: 0; padding: 14px 12px 16px; }
}

/* ============================================================
   디자인 리프레시 v25 — 방송 그래픽 무드
   시그니처: 기울어진 액센트, 그라데이션 숫자, 테두리 대신 빛과 그림자
   ============================================================ */
:root {
  --grad-accent: linear-gradient(135deg, #ff9a4d 0%, #f26b1d 55%, #e04e0a 100%);
  --grad-navy: linear-gradient(155deg, #1b2f4d 0%, #0e1a2b 70%);
  --shadow-1: 0 1px 2px rgba(14,26,43,.05), 0 6px 16px rgba(14,26,43,.07);
  --shadow-2: 0 2px 4px rgba(14,26,43,.07), 0 14px 32px rgba(14,26,43,.12);
  --surface: linear-gradient(180deg, #ffffff 0%, #fafbfe 100%);
}

/* 배경: 코트 조명 글로우 */
body {
  background:
    radial-gradient(900px 360px at 88% -80px, rgba(242,107,29,.10), transparent 65%),
    radial-gradient(700px 300px at -120px 220px, rgba(31,95,150,.08), transparent 60%),
    linear-gradient(180deg, #eaeef5 0%, #f2f4f9 420px, #f2f4f9 100%);
  background-attachment: fixed;
}

/* 섹션 타이틀: 기울어진 오렌지 마커 */
.sec-title { border-left: none; padding-left: 0; display: flex; align-items: center; gap: 10px; }
.sec-title::before {
  content: ""; width: 15px; height: 20px; flex-shrink: 0;
  background: var(--grad-accent); transform: skewX(-14deg);
  border-radius: 4px; box-shadow: 0 3px 8px rgba(242,107,29,.35);
}
.video-hero .sec-title::before { box-shadow: 0 0 14px rgba(255,150,60,.55); }

/* 표: 테두리 제거, 헤더 그라데이션 + 오렌지 룰 */
.tbl { border: none; border-radius: 12px; box-shadow: var(--shadow-1); }
.tbl thead th {
  background: var(--grad-navy);
  box-shadow: inset 0 -2px 0 var(--accent);
}
.tbl tbody tr:hover { background: #fff4ec; }
.tbl th.sorted { background: var(--grad-accent); }

/* 탭·칩·버튼: 필 형태 + 그라데이션 액티브 */
.tabs a { border-radius: 999px; border-color: transparent; box-shadow: var(--shadow-1); }
.tabs a:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); color: var(--accent-dark); }
.tabs a.on {
  background: var(--grad-navy); border-color: transparent;
  box-shadow: inset 0 -3px 0 var(--accent), 0 6px 14px rgba(14,26,43,.25);
}
.tabs.subtabs a.on { background: var(--grad-accent); box-shadow: 0 4px 12px rgba(242,107,29,.35); }
.team-chip { border-color: transparent; box-shadow: var(--shadow-1); }
.team-chip:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.filters {
  border: none; border-radius: 14px; background: var(--surface);
  box-shadow: var(--shadow-1);
}
.filters button {
  background: var(--grad-accent); border-radius: 999px;
  box-shadow: 0 5px 14px rgba(242,107,29,.35);
}
.filters button:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(242,107,29,.45); }
.badge { border-radius: 999px; background: linear-gradient(135deg, #fff1e7, #ffe3cd); }
.lvl { border-radius: 999px; padding: 2px 9px; }

/* 카드류: 1px 테두리 → 빛나는 표면 + 겹층 그림자 */
.sp-card, .my-card, .ana-card, .news-list li, .partner-card, .career-card,
.rp-mvp-card, .hl-card {
  border-color: transparent;
  background: var(--surface);
  box-shadow: var(--shadow-1);
}
.sp-card:hover, .my-card:hover, .hl-card:hover {
  border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow-2);
}
.my-card, .ana-card { border-radius: 16px; }
.my-card { transition: transform .15s, box-shadow .15s; }
.my-next { background: linear-gradient(135deg, #fff3ea, #ffe9d6); border: none; box-shadow: inset 0 0 0 1px rgba(242,107,29,.18); }

/* 큰 숫자: 이탤릭 + 그라데이션 텍스트 (방송 스코어 그래픽) */
.podium-stat, .my-wl b {
  font-style: italic;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.podium-stat { filter: drop-shadow(0 2px 6px rgba(242,107,29,.35)); }
.podium-stat .unit { -webkit-text-fill-color: #93a4bb; font-style: normal; }
.podium-card { border-radius: 18px; }
.podium-card.rank1 {
  box-shadow: 0 10px 28px rgba(10,20,35,.35), 0 0 0 1px rgba(217,166,42,.45),
              0 0 26px rgba(217,166,42,.18);
}

/* 경기 행: 호버 시 왼쪽 오렌지 마커 */
.mrow { position: relative; transition: background .12s; }
.mrow::after {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 3px;
  border-radius: 2px; background: var(--grad-accent);
  opacity: 0; transition: opacity .12s;
}
.mrow:hover::after { opacity: 1; }

/* 주간 리포트 배너 */
.report-banner {
  border: none !important;
  background: linear-gradient(120deg, #16263d 0%, #1f3352 60%, #29456e 100%) !important;
  color: #e8edf4 !important; border-radius: 14px !important;
  box-shadow: var(--shadow-2), inset 0 0 0 1px rgba(255,255,255,.06);
}
.report-banner .muted { color: #9fb0c6 !important; }
.report-banner .badge { background: var(--grad-accent); color: #fff; }

/* 영상 히어로: 유리 카드 + 글로우 */
.video-hero {
  background:
    radial-gradient(520px 200px at 12% -40px, rgba(242,107,29,.25), transparent 60%),
    var(--grad-navy);
  box-shadow: var(--shadow-2), inset 0 0 0 1px rgba(255,255,255,.07);
}
.hl-strip.big .hl-card { backdrop-filter: blur(4px); border-radius: 14px; }

/* 가로 스트립 스크롤바 얇게 */
.hl-strip::-webkit-scrollbar { height: 6px; }
.hl-strip::-webkit-scrollbar-thumb { background: rgba(120,135,155,.4); border-radius: 3px; }
.hl-strip::-webkit-scrollbar-track { background: transparent; }

/* 팔로우 버튼·MY 요소 폴리시 */
.follow-btn { box-shadow: var(--shadow-1); border-width: 1px; }
.follow-btn.following { border-color: transparent; background: var(--grad-accent); box-shadow: 0 5px 14px rgba(242,107,29,.4); }
.my-scorer { background: linear-gradient(180deg, #f2f5f9, #e9eef5); }
.wl { border-radius: 999px; }
.wl.w { background: linear-gradient(135deg, #38a159, #0c7a41); }
.wl.l { background: linear-gradient(135deg, #cf5f5f, #a83838); }

footer.footer { color: #9aa7b6; padding: 26px 0 34px; }

/* ---- 레벨 엠블럼 v26: 기울어진 방송 그래픽 태그 ---- */
.lvl {
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--num); font-size: 11px; font-weight: 700;
  letter-spacing: .05em; white-space: nowrap;
  height: 20px; min-width: 36px; padding: 0 8px;
  transform: skewX(-10deg);
  box-shadow: 0 2px 6px rgba(14,26,43,.28), inset 0 1px 0 rgba(255,255,255,.22);
  vertical-align: middle;
}
.lvl-대학, .lvl-남대부, .lvl-여대부 { background: linear-gradient(135deg, #3480c4, #1a4f80); }
.lvl-남고부, .lvl-여고부 { background: linear-gradient(135deg, #19a55c, #0a6b39); }
.lvl-남중부, .lvl-여중부 { background: linear-gradient(135deg, #d3a11c, #97700a); }
.lvl-디비전 { background: linear-gradient(135deg, #8257c0, #59357e); }
.lvl-3x3 { background: linear-gradient(135deg, #cd6a2c, #96430f); }
.lvl-D리그 { background: linear-gradient(135deg, #b02a3c, #771620); }
.mrow { grid-template-columns: 46px 64px minmax(0,1fr) 58px minmax(0,1fr); }
.mrow .lvl { justify-self: start; }

/* ---- 팀 BEST 5 라인업 (방송 그래픽) ---- */
.best5 {
  margin: 18px 0;
  background:
    radial-gradient(560px 220px at 8% -60px, rgba(242,107,29,.22), transparent 60%),
    var(--grad-navy);
  border-radius: 18px; padding: 18px 20px 20px;
  box-shadow: var(--shadow-2), inset 0 0 0 1px rgba(255,255,255,.07);
}
.best5-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.best5-title {
  font-family: var(--num); font-style: italic; font-weight: 700;
  font-size: 24px; letter-spacing: .06em;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(242,107,29,.4));
}
.best5-sub { color: #9fb0c6; font-size: 12px; }
.best5-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.b5-card {
  position: relative; text-decoration: none; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border-radius: 14px; padding: 16px 8px 12px; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
  transition: transform .15s, box-shadow .15s;
}
.b5-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(242,107,29,.55), 0 10px 22px rgba(0,0,0,.35);
}
.b5-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--grad-accent);
}
.b5-num {
  position: absolute; top: 2px; right: 8px;
  font-family: var(--num); font-style: italic; font-weight: 700; font-size: 30px;
  color: rgba(255,255,255,.14); line-height: 1;
}
.b5-face {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  display: block; margin: 0 auto 8px; background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,.65), 0 0 0 4px rgba(242,107,29,.6);
}
.b5-face.logo { object-fit: contain; padding: 8px; background: #f4f6fa; }
.b5-face.mono {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
}
.b5-name { color: #fff; font-weight: 800; font-size: 14px; margin-bottom: 5px; }
.b5-stat { display: flex; justify-content: center; gap: 7px; align-items: baseline; }
.b5-stat b { font-family: var(--num); font-size: 14px; color: #ffb98a; }
.b5-stat small { font-size: 8.5px; color: #8aa0ba; letter-spacing: .08em; margin-left: 1px; }

/* ---- 팀 컬러(플레이스타일) 카드 ---- */
.team-style {
  margin: 14px 0 20px; background: var(--surface); border-radius: 16px;
  padding: 16px 20px 12px; box-shadow: var(--shadow-1);
}
.ts-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.ts-tag {
  font-size: 12.5px; font-weight: 800; color: #fff;
  background: var(--grad-navy); border-radius: 999px; padding: 5px 13px;
  box-shadow: 0 3px 8px rgba(14,26,43,.25);
}
.ts-tag:first-child { background: var(--grad-accent); box-shadow: 0 3px 10px rgba(242,107,29,.4); }
.ts-lines { margin: 0; padding: 0 0 0 2px; list-style: none; }
.ts-lines li {
  position: relative; padding: 5px 0 5px 20px; font-size: 13.5px; color: #3d4854;
}
.ts-lines li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--grad-accent); transform: skewX(-12deg);
}
.ts-note { margin-top: 8px; font-size: 11.5px; color: var(--muted); }

@media (max-width: 720px) {
  .best5-row { grid-template-columns: repeat(5, minmax(102px, 1fr)); overflow-x: auto; }
  .best5 { padding: 14px 12px 16px; }
}

/* 그리드 자식이 표 콘텐츠 폭만큼 부풀어 페이지를 밀어내는 것 방지 */
.two-col > *, .ana-grid > *, .my-grid > *, .courts > * { min-width: 0; }

/* 드래프트 지명 정보 (커리어 프로 카드) */
.draft-pick {
  margin-top: 4px; font-family: var(--num); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: .03em;
}
