/* =========================================================
   MORENO FAN PAGE — styles
   ========================================================= */
:root {
  --red: #e4002b;
  --red-600: #c80026;
  --red-50: #fff1f4;
  --navy: #0b1f5c;
  --navy-900: #06133f;
  --navy-700: #13307f;
  --ink: #121826;
  --text: #3d4556;
  --muted: #6b7385;
  --line: #e4e7ee;
  --tint: #f5f6fa;
  --white: #fff;
  --green: #11875a;
  --green-50: #e9f7f0;
  --neon: #39ff14;
  --neon-ink: #0b6b1f;
  --neon-50: #ecffe6;
  --yellow: #ffc400;
  --yellow-ink: #8a6400;
  --yellow-50: #fff8db;

  --font: "Pretendard Variable", Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --font-display: "Archivo", var(--font);
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 92, .06);
  --shadow: 0 10px 30px rgba(11, 31, 92, .08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 92, .16);

  --header-h: 72px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(72px, 9vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0; line-height: 1.2; }
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

.shell { width: min(1200px, 100% - var(--gutter) * 2); margin-inline: auto; }

.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 200;
  transform: translateY(-200%);
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: var(--navy); color: #fff; font-weight: 700; text-decoration: none;
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

.eyebrow {
  margin-bottom: 12px;
  font: 800 13px/1 var(--font-display);
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
}
.eyebrow.light { color: #ff9fb3; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border: 1px solid transparent; border-radius: 12px;
  font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(228, 0, 43, .22); }
.btn-primary:hover { background: var(--red-600); }
.btn-primary:disabled { opacity: .6; cursor: default; }
.btn-line { border-color: #cfd5e2; color: var(--navy); background: #fff; }
.btn-line:hover { border-color: var(--navy); }
.btn-ghost { min-height: 40px; padding: 0 16px; border-color: rgba(255, 255, 255, .5); color: #fff; font-size: 14px; }
.btn-ghost:hover { background: #fff; color: var(--red); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--navy); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--red); color: #fff;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(120, 0, 22, .25); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 2.5px solid currentColor; border-radius: 12px;
  font: 800 20px/1 var(--font-mono);
}
.brand-text { display: flex; flex-direction: column; font: 800 12px/1.15 var(--font-display); letter-spacing: .12em; }
.brand-text b { font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  position: relative; padding: 8px 14px; border-radius: 10px;
  color: rgba(255, 255, 255, .88); text-decoration: none;
  font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.main-nav a:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.main-nav a.active { color: #fff; background: rgba(255, 255, 255, .18); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(900px 480px at 100% 0%, rgba(11, 31, 92, .07), transparent 60%),
    radial-gradient(700px 420px at 0% 0%, rgba(228, 0, 43, .05), transparent 60%),
    #fff;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--ink);
}
.hero-copy h1 span { color: var(--red); }
.hero-sub { max-width: 560px; color: var(--text); font-size: clamp(17px, 1.5vw, 19px); line-height: 1.75; }

.stats {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  margin: 36px 0 0; max-width: 620px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow);
  overflow: hidden;
}
.stat { padding: 20px 22px; margin: 0; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat dt { font-size: 13px; font-weight: 600; color: var(--muted); }
.stat dd { margin: 6px 0 0; font: 800 clamp(22px, 2.2vw, 28px)/1.15 var(--font); color: var(--navy); letter-spacing: -.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat dd small { display: block; margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 0; }
#heroDday { color: var(--red); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.disclaimer { margin-top: 18px; font-size: 13px; color: #8a91a1; }

/* Heart widget */
.hero-widget { width: 100%; max-width: 400px; justify-self: end; }
.heart-card {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 66%, #fff 66%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.heart-hit {
  position: absolute; inset: 0; z-index: 1;
  padding: 0; border: 0; background: transparent;
  -webkit-tap-highlight-color: transparent;
}
.heart-hit:focus-visible { outline-offset: -6px; border-radius: var(--radius-lg); }
.heart-stage { position: absolute; inset: 0; pointer-events: none; }
.stage-glow {
  position: absolute; left: 50%; top: 18%; width: 78%; aspect-ratio: 1; transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 65%);
}
.stage-floor {
  position: absolute; left: 50%; bottom: 20.5%; width: 62%; height: 22px; transform: translateX(-50%);
  border-radius: 50%; background: rgba(11, 31, 92, .16); filter: blur(4px);
}
.hero-character {
  position: absolute; left: 50%; bottom: 19%;
  width: 84%; height: auto; transform: translateX(-50%);
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .18));
  transition: transform .28s ease, opacity .2s ease;
}
.heart-hit:hover .hero-character { transform: translateX(-50%) translateY(-4px); }
.heart-hit:active .hero-character { transform: translateX(-50%) scale(.97); }
.hero-character.costume-exit { opacity: 0; transform: translateX(-50%) scale(.8); }
.hero-character.costume-enter { animation: costumeIn .55s cubic-bezier(.2, .9, .25, 1.2); }

.heart-counter {
  position: absolute; left: 18px; top: 18px; z-index: 2; pointer-events: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px;
  background: #fff; color: var(--red);
  font: 800 15px/1 var(--font-mono);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}
.heart-counter span { font-size: 16px; }
.heart-counter.bump { animation: bump .3s ease; }
.costume-label {
  position: absolute; right: 18px; top: 18px; z-index: 2; pointer-events: none;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28);
  color: #fff; font-size: 13px; font-weight: 700;
  backdrop-filter: blur(6px);
}
.heart-foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; pointer-events: none;
  padding: 0 24px 20px;
}
.heart-progress { height: 8px; border-radius: 999px; background: #ffe3e9; overflow: hidden; }
.heart-progress i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--red), #ff6b88); transition: width .25s ease; }
.heart-foot p { margin-top: 12px; text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); }

.heart-float-layer { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.floating-heart { position: absolute; color: var(--red); font-size: 26px; line-height: 1; transform: translate(-50%, -50%); animation: floatHeart .9s ease-out forwards; text-shadow: 0 2px 6px rgba(0, 0, 0, .15); }
.costume-fx {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  display: grid; place-items: center;
  background: radial-gradient(circle, rgba(228, 0, 43, .35), rgba(11, 31, 92, .25));
  color: #fff; font: 900 34px/1 var(--font-display); letter-spacing: .04em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .3);
  opacity: 0;
}
.heart-card.unlock .costume-fx { animation: costumeFlash .9s ease; }


/* ---------- Ticker ---------- */
.ticker { overflow: hidden; background: var(--navy); color: #fff; }
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker-track span { padding: 14px 0; font-size: 14px; font-weight: 600; white-space: nowrap; }
.ticker-track i { margin: 0 18px; font-style: normal; font-size: 8px; color: var(--red); vertical-align: middle; }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section-tint { background: var(--tint); }
.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 64px; align-items: end;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.section-head h2 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; letter-spacing: -.035em; color: var(--navy); }
.section-head > p { max-width: 520px; justify-self: end; color: var(--muted); font-size: 17px; line-height: 1.75; }
.sub-title {
  display: flex; align-items: center; gap: 12px;
  margin: 40px 0 16px;
  font-size: 20px; font-weight: 800; color: var(--ink);
}
.sub-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- Video feed ---------- */

/* 영상 캐러셀: 좌우 버튼으로 넘기기 (모바일은 손가락으로 넘기기도 가능) */
.sub-title .count { font: 700 13px/1 var(--font-mono); color: var(--muted); }
.carousel { --per: 3; --gap: 20px; position: relative; }
.carousel.is-shorts { --per: 5; --gap: 16px; }
.car-track {
  display: flex; gap: var(--gap);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; overscroll-behavior-x: contain;
  padding: 4px 0 12px; margin: -4px 0 -12px;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track > * { flex: 0 0 calc((100% - var(--gap) * (var(--per) - 1)) / var(--per)); min-width: 0; scroll-snap-align: start; }
.car-btn {
  position: absolute; top: calc(var(--thumb-h, 40%) / 2); z-index: 3;
  width: 48px; height: 48px; margin-top: -24px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: #fff; color: var(--navy);
  font-size: 30px; line-height: 1; padding-bottom: 4px;
  box-shadow: 0 8px 22px rgba(11, 31, 92, .16);
  transition: opacity .2s, transform .2s, background-color .2s, color .2s;
}
.car-btn.prev { left: -24px; }
.car-btn.next { right: -24px; }
@media (hover: hover) { .car-btn:hover:not(:disabled) { background: var(--navy); color: #fff; transform: scale(1.06); } }
.car-btn:active:not(:disabled) { transform: scale(.94); }
.car-btn:disabled { opacity: 0; pointer-events: none; }
.carousel.no-scroll .car-btn { display: none; }
.feed-empty { padding: 24px; color: var(--muted); }
.video-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; color: inherit; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.video-thumb { position: relative; aspect-ratio: 16 / 9; background: #e9ecf3; overflow: hidden; }
.is-short .video-thumb { aspect-ratio: 9 / 16; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .35)); }
.play {
  position: absolute; left: 50%; top: 50%; z-index: 1; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(228, 0, 43, .95); color: #fff; font-size: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transition: transform .2s;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.is-short .play { width: 44px; height: 44px; font-size: 14px; }
.short-badge {
  position: absolute; left: 10px; top: 10px; z-index: 1;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(0, 0, 0, .6); color: #fff; font: 700 11px/1 var(--font-display); letter-spacing: .06em;
}
.video-body { display: flex; flex-direction: column; flex: 1; gap: 8px; padding: 16px 18px 18px; }
.video-title {
  font-size: 16px; font-weight: 700; line-height: 1.5; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.is-short .video-body { padding: 12px 14px 14px; gap: 6px; }
.is-short .video-title { font-size: 14px; }
.video-channel { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--muted); }
.skeleton .video-thumb { animation: pulse 1.4s ease-in-out infinite; }
.skeleton .video-title { height: 42px; border-radius: 6px; background: #eef0f5; }

/* ---------- Matches ---------- */
.match-progress {
  display: flex; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none;
}
.match-progress li {
  flex: 1; height: 6px; border-radius: 999px; background: #dfe3ec;
  font-size: 0; color: transparent;
}
.match-progress li.is-win { background: var(--green); }
.match-progress li.is-draw { background: var(--yellow); }
.match-progress li.is-loss { background: var(--red); }
.match-progress li.is-next { background: var(--neon); box-shadow: 0 0 12px rgba(57, 255, 20, .6); }
.match-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.match-card {
  display: flex; flex-direction: column;
  padding: 22px 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm);
}
.match-card.is-next { border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 16px 40px rgba(57, 255, 20, .22); }
.match-card.is-draw { border-color: #ffe08a; }
.match-card.is-loss { border-color: #ffb3c1; }
.match-card.is-win { border-color: #bfe6d2; }
.match-card.is-tbd { background: #fbfbfd; }
.match-top, .match-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.game-no { font: 800 13px/1 var(--font-display); letter-spacing: .1em; color: var(--muted); }
.tag {
  padding: 5px 10px; border-radius: 999px;
  background: #eef0f5; color: var(--muted);
  font: 800 11px/1 var(--font-display); letter-spacing: .08em;
}
.tag-win { background: var(--green-50); color: var(--green); }
.tag-next { background: var(--neon); color: #063d12; }
.tag-draw { background: var(--yellow-50); color: var(--yellow-ink); }
.tag-loss { background: var(--red-50); color: var(--red); }
.tag-final { background: var(--navy); color: #fff; }
.match-vs {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center; gap: 12px;
  padding: 28px 0 24px;
}
.team { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; }
.flag {
  width: 48px; height: 32px; object-fit: cover;
  border-radius: 5px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08), 0 4px 10px rgba(0, 0, 0, .08);
  background: #eef0f5;
}
.flag-unknown { display: grid; place-items: center; color: var(--muted); font-weight: 800; font-size: 16px; box-shadow: inset 0 0 0 1px #d8dce6; }
.team strong { margin-top: 12px; font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.team small { margin-top: 2px; font: 700 11px/1.3 var(--font-display); letter-spacing: .08em; color: #9aa1b0; }
.score { font: 800 30px/1 var(--font-mono); color: var(--navy); white-space: nowrap; }
.score span { margin: 0 4px; color: #b3bac8; }
.is-win .score { color: var(--green); }
.score.vs { font-size: 18px; color: #b3bac8; }
.match-bottom { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--muted); }
.match-bottom > :last-child { color: var(--ink); font-weight: 700; }
.is-win .match-bottom > :last-child { color: var(--green); }
.is-next .match-bottom > :last-child { color: var(--neon-ink); }
.is-draw .score { color: var(--yellow-ink); }
.is-draw .match-bottom > :last-child { color: var(--yellow-ink); }
.is-loss .score { color: var(--red); }
.is-loss .match-bottom > :last-child { color: var(--red); }

/* ---------- Quotes ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.quote-card {
  position: relative; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 26px 28px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; text-align: center;
}
.quote-card blockquote { margin: 0; font-size: clamp(18px, 1.6vw, 21px); font-weight: 700; line-height: 1.65; color: var(--ink); letter-spacing: -.01em; }
.quote-card figcaption { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--muted); }
.quote-card figcaption b { font: 800 12px/1 var(--font-mono); color: var(--red); padding: 5px 8px; border-radius: 6px; background: var(--red-50); }
/* 카드 수가 홀수로 남으면 마지막 카드를 한 줄 전체로 */
.quote-card:last-child:nth-child(even) { grid-column: 1 / -1; }
.quote-card.featured {
  grid-column: 1 / -1;
  padding: clamp(30px, 4vw, 44px);
  border: 0; background: var(--navy); color: #fff;
  background-image: radial-gradient(600px 300px at 100% 0%, rgba(228, 0, 43, .28), transparent 60%);
}
.quote-card.featured blockquote { color: #fff; font-size: clamp(24px, 3vw, 38px); line-height: 1.45; letter-spacing: -.025em; max-width: 900px; margin-inline: auto; }
.quote-card.featured figcaption { color: #b9c3e3; }
.quote-card.featured figcaption b { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- Shop ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 4 / 5; background: #e6e8ed; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-image img { transform: scale(1.03); }
.product-copy { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.product-cat { font: 800 12px/1 var(--font-display); letter-spacing: .1em; color: var(--red); }
.product-copy h3 { margin: 10px 0 8px; font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.product-copy p { margin-bottom: 20px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
}
.product-foot strong { font: 800 18px/1 var(--font-mono); color: var(--navy); }
.product-foot sup { margin-left: 2px; color: var(--red); font-size: 13px; }
.product-btn {
  padding: 9px 14px; border: 1px solid #d5dae5; border-radius: 10px;
  background: #fff; color: var(--navy); font-size: 14px; font-weight: 700;
  transition: background-color .2s, color .2s, border-color .2s;
}
.product-card:hover .product-btn, .product-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Supporters ---------- */
.support { padding-top: var(--section-y); background: var(--navy); color: #fff; }
.support-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: 32px 64px; align-items: end;
  padding-bottom: clamp(40px, 5vw, 56px);
}
.support-copy h2 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; letter-spacing: -.035em; }
.support-copy p:last-child { max-width: 520px; margin-top: 16px; color: #c1cae6; font-size: 17px; line-height: 1.75; }
.comment-form {
  padding: 24px; border-radius: var(--radius-lg);
  background: #fff; color: var(--ink); box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}
.comment-form label { display: block; margin-bottom: 10px; font-size: 15px; font-weight: 800; color: var(--navy); }
.comment-row { display: flex; gap: 10px; }
.comment-row input {
  flex: 1 1 auto; min-width: 0; height: 52px; padding: 0 16px;
  border: 1px solid #d3d9e5; border-radius: 12px; background: var(--tint);
  font-size: 16px;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.comment-row input::placeholder { color: #9aa1b0; }
.comment-row input:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(11, 31, 92, .1); }
.comment-row input[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 4px rgba(228, 0, 43, .1); }
.comment-row .btn { height: 52px; flex: none; }
.comment-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; font-size: 13px; color: var(--muted); }
.comment-meta b { color: var(--navy); }
.comment-error { min-height: 20px; margin-top: 6px; color: var(--red); font-size: 14px; font-weight: 700; }

.admin-panel { margin-bottom: 40px; padding: 24px; border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .08); }
.admin-panel-head, .admin-messages li, .footer-admin, .admin-dialog-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.admin-panel h3 { font-size: 22px; }
.admin-panel .btn { min-height: 40px; padding: 8px 14px; }
.admin-panel > p { min-height: 20px; margin: 8px 0; color: #ffb0c0; }
.admin-messages { display: grid; gap: 8px; max-height: 420px; overflow: auto; }
.admin-messages li { padding: 12px 14px; border-radius: 10px; background: #fff; color: var(--ink); }
.admin-messages button, .footer-admin button { border: 0; background: none; color: var(--red); font: inherit; font-weight: 800; cursor: pointer; }
.admin-messages button:disabled { opacity: .5; cursor: wait; }
.footer-admin { flex-wrap: wrap; }
.footer-admin button { color: inherit; font-size: 12px; }
.admin-dialog { width: min(420px, calc(100% - 32px)); padding: 26px; border: 0; border-radius: var(--radius-lg); color: var(--ink); box-shadow: var(--shadow); }
.admin-dialog::backdrop { background: rgba(3, 13, 51, .75); }
.admin-dialog h2 { color: var(--navy); font-size: 24px; }
.admin-dialog > form > p:not(.comment-error) { margin: 8px 0 20px; color: var(--muted); }
.admin-dialog label { display: block; margin: 12px 0 6px; font-weight: 800; }
.admin-dialog input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid #d3d9e5; border-radius: 10px; font-size: 16px; }
.admin-dialog-actions { justify-content: flex-end; margin-top: 10px; }

.stadium {
  --rows: 5;
  position: relative;
  padding: 104px 3% 96px;
  border-top: 4px solid rgba(255, 255, 255, .9);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 30%),
    repeating-linear-gradient(0deg, #0e2a78 0 76px, #0a2266 76px 80px);
  overflow: hidden;
}
.stadium-board {
  position: absolute; top: 20px; left: 50%; z-index: 5; transform: translateX(-50%);
  width: min(640px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 18px; border: 2px solid rgba(255, 255, 255, .85); border-radius: 10px;
  background: #030d33;
  font: 700 13px/1.3 var(--font-mono);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.stadium-board span { color: #fff; letter-spacing: .08em; white-space: nowrap; }
.stadium-board b { color: #ffb0c0; font-family: var(--font); font-weight: 700; text-align: right; }
.fan-seats {
  position: relative;
  display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); grid-auto-rows: 80px;
  max-width: 1200px; margin: 0 auto;
}
.fan { position: relative; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 6px; }
.fan-person {
  position: relative; width: 44px; height: 60px;
  transform-origin: bottom center;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, .2));
  animation: cheer 2.4s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * -1s);
}
.fan-person > * { position: absolute; }
.pf-head { left: 11px; top: 5px; width: 22px; height: 18px; background: #f1c39a; border: 2px solid #1d2440; border-radius: 3px; }
.pf-hair { left: 10px; top: 1px; width: 24px; height: 10px; background: #503622; border: 2px solid #1d2440; border-bottom: 0; border-radius: 3px 3px 0 0; }
.pf-body { left: 8px; bottom: 5px; width: 28px; height: 27px; border: 2px solid #1d2440; border-radius: 4px; background: var(--red); }
.pf-arm { top: 25px; width: 7px; height: 16px; background: #f1c39a; border: 2px solid #1d2440; border-radius: 3px; }
.pf-arm.left { left: 2px; transform: rotate(15deg); }
.pf-arm.right { right: 2px; transform: rotate(-15deg); }
.pf-eye { top: 12px; width: 3px; height: 3px; background: #1d2440; }
.pf-eye.left { left: 16px; }
.pf-eye.right { left: 24px; }
.pf-mouth { left: 19px; top: 17px; width: 6px; height: 3px; border-bottom: 2px solid #b15249; }
.variant-2 .pf-body { background: #fff; }
.variant-3 .pf-body { background: #2b52a2; }
.variant-4 .pf-body { background: #ffb6c7; }
.variant-5 .pf-body { background: #ffe080; }
.variant-6 .pf-body { background: #9edcff; }
.variant-7 .pf-body { background: #9fe7bd; }
.variant-8 .pf-body { background: linear-gradient(90deg, var(--red) 50%, #fff 50%); }
.variant-3 .pf-hair, .variant-6 .pf-hair { background: #1d1d24; }
.variant-5 .pf-hair { background: #8a5a2b; }
.fan.has-bubble .pf-arm.left { transform: rotate(160deg); top: 4px; }
.fan-bubble {
  position: absolute; left: 50%; bottom: 66px; z-index: 4;
  width: max-content; max-width: 180px;
  padding: 8px 12px; border-radius: 12px;
  background: #fff; color: var(--navy);
  font-size: 13px; font-weight: 700; line-height: 1.4; text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
  transform: translateX(-50%);
  animation: bubbleIn .35s cubic-bezier(.2, .9, .25, 1.2) both;
}
.fan-bubble::after {
  content: ""; position: absolute; left: 50%; bottom: -6px; width: 12px; height: 12px;
  background: inherit; transform: translateX(-50%) rotate(45deg); border-radius: 2px;
}
.fan-bubble.edge-left { left: 0; transform: none; }
.fan-bubble.edge-left::after { left: 22px; }
.fan-bubble.edge-right { left: auto; right: 0; transform: none; }
.fan-bubble.edge-right::after { left: auto; right: 16px; transform: rotate(45deg); }
.fan-bubble.new { background: var(--red); color: #fff; }
.pitch-edge {
  position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
  display: flex; align-items: center; overflow: hidden;
  border-top: 6px solid var(--red); background: #fff; color: var(--navy);
}
.pitch-track { display: flex; width: max-content; animation: ticker 36s linear infinite reverse; }
.pitch-track span { font: 800 14px/1 var(--font-mono); letter-spacing: .12em; white-space: nowrap; padding-right: 8px; }

/* ---------- CTA / Footer ---------- */
.final-cta { padding: clamp(56px, 6vw, 88px) 0; background: var(--red); color: #fff; }
.final-cta .eyebrow.light { color: rgba(255, 255, 255, .8); }
.story-head { margin-bottom: 24px; }
.final-cta h2 { margin: 4px 0 0; font-size: clamp(26px, 2.8vw, 36px); font-weight: 800; letter-spacing: -.025em; }
.story-body { display: grid; gap: 10px; }
.story-body p { font-size: 17px; line-height: 1.8; color: rgba(255, 255, 255, .92); }
.story-body strong { color: #fff; font-weight: 700; box-shadow: inset 0 -.45em 0 rgba(255, 255, 255, .18); }
.story-cheers { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 6px; }
.story-cheers li { position: relative; padding-left: 22px; font-size: 18px; font-weight: 800; line-height: 1.6; color: #fff; letter-spacing: -.01em; }
.story-cheers li::before { content: "♥"; position: absolute; left: 0; top: 1px; font-size: 13px; color: rgba(255, 255, 255, .75); }
.story-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .35);
}
.story-quote { margin: 0; font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; line-height: 1.5; letter-spacing: -.015em; color: #fff; }
.story-foot .btn { flex: none; }
.site-footer { padding: 36px 0; background: var(--navy-900); color: #d1d8ed; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-inner p { font-size: 13px; color: #8f9aba; }
.footer-info { display: grid; gap: 6px; }
.footer-info a { color: #d1d8ed; text-underline-offset: 3px; }
.footer-inner .copy { font: 700 12px/1 var(--font-mono); color: #8f9aba; white-space: nowrap; }

/* ---------- Modal ---------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2, 9, 35, .7); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal-card {
  position: relative; width: min(420px, 100%);
  padding: 36px 28px 28px; border-radius: var(--radius-lg);
  background: #fff; color: var(--ink); text-align: center;
  box-shadow: var(--shadow-lg);
  animation: pop .25s cubic-bezier(.2, .9, .25, 1.2);
}
.modal-card:focus { outline: none; }
.modal-close {
  position: absolute; right: 12px; top: 12px; width: 40px; height: 40px;
  border: 0; border-radius: 50%; background: var(--tint); color: var(--muted);
  font-size: 24px; line-height: 1;
}
.modal-close:hover { background: #e6e9f0; color: var(--ink); }
.modal-card h2 { margin: 12px 0 10px; font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.modal-card p { margin-bottom: 24px; color: var(--muted); line-height: 1.7; }
.modal-card p strong { color: var(--ink); }
.modal-card .btn { width: 100%; }
body.modal-open { overflow: hidden; }

/* ---------- Animations ---------- */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatHeart { 0% { opacity: 1; transform: translate(-50%, -50%) scale(.8); } 100% { opacity: 0; transform: translate(-50%, -150%) translateY(-60px) scale(1.4); } }
@keyframes costumeIn { 0% { transform: translateX(-50%) scale(.75); opacity: 0; } 100% { transform: translateX(-50%) scale(1); opacity: 1; } }
@keyframes costumeFlash { 0% { opacity: 0; } 25%, 60% { opacity: 1; } 100% { opacity: 0; } }
@keyframes bump { 50% { transform: scale(1.15); } }
@keyframes cheer { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes bubbleIn { from { opacity: 0; translate: 0 8px; } to { opacity: 1; translate: 0 0; } }
@keyframes pulse { 50% { opacity: .55; } }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.94); } }

/* ---------- Responsive ---------- */
@media (max-width: 1300px) {
  .car-btn.prev { left: -14px; }
  .car-btn.next { right: -14px; }
}

@media (max-width: 1080px) {
  .carousel.is-shorts { --per: 4; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; }
  .match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .carousel { --per: 2; --gap: 16px; }
  .carousel.is-shorts { --per: 3; --gap: 14px; }
  :root { --header-h: 64px; }
  .header-cta { display: none; }
  .menu-toggle {
    display: grid; place-content: center; gap: 5px;
    width: 44px; height: 44px; margin-left: auto;
    border: 1px solid rgba(255, 255, 255, .45); border-radius: 12px; background: transparent;
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: #fff; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 16px;
    background: var(--red); box-shadow: 0 16px 30px rgba(120, 0, 22, .25);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility 0s .2s;
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: none; transition: opacity .2s, transform .2s; }
  .main-nav a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid rgba(255, 255, 255, .15); border-radius: 0; }
  .main-nav a:last-child { border-bottom: 0; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-widget { justify-self: center; max-width: 400px; }
  .hero-copy { text-align: left; }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .section-head > p { justify-self: start; }
  .shop-grid { gap: 14px; }
  .product-copy { padding: 18px; }
  .product-foot { flex-wrap: wrap; }
  .support-head { grid-template-columns: 1fr; }
  .fan-seats { grid-auto-rows: 72px; }
  .fan-person { transform: scale(.85); }
  .stadium { background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 30%), repeating-linear-gradient(0deg, #0e2a78 0 68px, #0a2266 68px 72px); }
}

@media (max-width: 640px) {
  :root { --section-y: 56px; --gutter: 18px; }
  body { font-size: 15px; }
  .hero { padding: 32px 0 48px; }
  .hero-grid { gap: 32px; }
  .hero-copy h1 { font-size: clamp(38px, 11.5vw, 52px); margin-bottom: 16px; }
  .hero-sub { font-size: 16px; line-height: 1.7; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .stat { padding: 16px 18px; }
  .stat:first-child { grid-column: 1 / -1; }
  .stat + .stat { border-left: 0; }
  .stat:nth-child(2), .stat:nth-child(3) { border-top: 1px solid var(--line); }
  .stat:nth-child(3) { border-left: 1px solid var(--line); }
  .hero-actions { margin-top: 20px; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; padding: 0 12px; font-size: 14px; }
  .hero-widget { max-width: 320px; }
  .heart-foot { padding: 0 18px 16px; }
  .heart-foot p { font-size: 12px; margin-top: 10px; }
  .ticker-track span { padding: 11px 0; font-size: 13px; }

  .section-head { margin-bottom: 24px; gap: 10px; }
  .section-head > p, .support-copy p:last-child { font-size: 15px; line-height: 1.7; }
  .sub-title { margin: 28px 0 12px; font-size: 17px; }
  .section-head + .sub-title { margin-top: 0; }

  /* 영상·Shorts: 옆 카드가 살짝 보이게 + 버튼 */
  .carousel { --per: 1.15; --gap: 12px; }
  .carousel.is-shorts { --per: 2.3; --gap: 12px; }
  .car-track { margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); }
  .car-btn { width: 38px; height: 38px; margin-top: -19px; font-size: 24px; }
  .car-btn.prev { left: -6px; }
  .car-btn.next { right: -6px; }
  .video-body { padding: 14px 16px 16px; }
  .video-title { font-size: 15px; }

  /* 경기 카드: 한 화면에 더 많이 */
  .match-progress { margin-bottom: 14px; gap: 6px; }
  .match-grid, .quote-grid { grid-template-columns: 1fr; gap: 12px; }
  .match-card { padding: 16px 18px; }
  .match-vs { padding: 16px 0 14px; gap: 8px; }
  .flag { width: 40px; height: 27px; }
  .team strong { margin-top: 8px; font-size: 15px; }
  .score { font-size: 26px; }
  .score.vs { font-size: 15px; }
  .match-bottom { padding-top: 12px; font-size: 13px; }

  .quote-card { padding: 20px 18px; gap: 10px; }
  .quote-card blockquote { font-size: 16.5px; line-height: 1.6; }
  .quote-card.featured { padding: 26px 20px; }
  .quote-card.featured blockquote { font-size: 21px; }
  .quote-card figcaption { font-size: 13px; }

  /* 굿즈: 이미지 왼쪽 + 설명 오른쪽 */
  .shop-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { flex-direction: row; }
  .product-image { flex: 0 0 36%; aspect-ratio: auto; min-height: 150px; }
  .product-copy { padding: 14px 16px; min-width: 0; }
  .product-cat { font-size: 11px; }
  .product-copy h3 { margin: 6px 0 4px; font-size: 17px; }
  .product-copy p { margin-bottom: 12px; font-size: 13.5px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .product-foot { padding-top: 10px; gap: 8px; }
  .product-foot strong { font-size: 15px; }
  .product-btn { padding: 7px 10px; font-size: 13px; min-height: 34px; }

  .support-head { gap: 24px; padding-bottom: 32px; }
  .comment-form { padding: 18px; }
  .comment-row { flex-direction: column; }
  .comment-row .btn { width: 100%; }
  .stadium { padding: 136px 6px 76px; }
  .stadium-board { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 11px; }
  .stadium-board b { text-align: left; font-size: 13px; }
  .fan-seats { grid-auto-rows: 62px; }
  .fan-person { transform: scale(.6); }
  .fan-bubble { bottom: 42px; max-width: 150px; padding: 6px 10px; font-size: 12px; }
  .pitch-edge { height: 46px; }
  .pitch-track span { font-size: 12px; }

  .story-head { margin-bottom: 18px; }
  .story-body p { font-size: 15.5px; line-height: 1.75; }
  .story-foot { flex-direction: column; align-items: stretch; gap: 18px; margin-top: 24px; padding-top: 22px; }
  .story-quote { font-size: 18px; }
  .story-cheers li { font-size: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .modal-card { padding: 32px 22px 22px; }
}

@media (max-width: 360px) {
  .hero-actions { flex-direction: column; }
  .product-image { flex-basis: 32%; }
  .team strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .ticker-track, .pitch-track { animation: none; }
}
