:root {
  --ink:        #2c1c0b;
  --ink-soft:   #6f5228;
  --parch-line: rgba(90,58,20,.28);
  --gold:       #f4c430;
  --gold-lite:  #ffe9a6;
  --gold-deep:  #c8901f;
  --gold-dark:  #8a5f14;
  --bronze:     #b8892e;
  --purple:     #7b3fa0;
  --purple-lo:  #a86fd0;
  --blue:       #2a86b0;
  --blue-lo:    #4fb0d8;
  --maroon:     #7a1f1f;
  --na:         #c8342f;
  --eu:         #2456c8;
  --cream:      #f3e7c8;

  --maxw: 1180px;
  --radius: 14px;

  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-head:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0; font-family: var(--font-body); line-height: 1.6;
  color: #f3e7d2; -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(70% 45% at 50% 0%, #3d2758, transparent 60%),
    linear-gradient(180deg, #241634 0%, #180e26 60%, #120a1c 100%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.section.parchment {
  color: var(--ink);
  background: #e8d7b0 url("assets/ui/parchment.jpg") center/cover;
  box-shadow: inset 0 14px 26px rgba(70,44,14,.35), inset 0 -14px 26px rgba(70,44,14,.35);
}
.section.dark { background: linear-gradient(180deg, rgba(20,12,30,.4), rgba(12,7,20,.55)); }

.eyebrow {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .26em;
  font-size: .78rem; font-weight: 700; margin: 0 0 12px; color: var(--gold-deep);
}
.parchment .eyebrow { color: #9a6a1a; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(30px, 4vw, 48px); }
.section-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 5.6vw, 3.6rem); line-height: 1.02; margin: 0; color: var(--gold-lite);
  text-shadow: 0 2px 0 rgba(0,0,0,.4);
}
.parchment .section-head h2 { color: #34210c; text-shadow: 0 1px 0 rgba(255,255,255,.4); }
.section-head p { font-size: 1.05rem; margin: 14px 0 0; color: #d9c39c; }
.parchment .section-head p { color: #6a4f26; }

.flourish { position: relative; width: 190px; height: 18px; margin: 16px auto 0; }
.flourish::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--bronze) 22%, var(--bronze) 78%, transparent);
}
.flourish::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, var(--gold-lite), var(--gold-deep)); border: 1px solid var(--gold-dark);
}

.divider-label { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 6px 0 26px; }
.divider-label::before, .divider-label::after { content: ""; height: 2px; flex: 1; max-width: 240px; }
.divider-label::before { background: linear-gradient(90deg, transparent, var(--bronze)); }
.divider-label::after  { background: linear-gradient(90deg, var(--bronze), transparent); }
.divider-label span {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  font-size: 1.15rem; padding: 7px 24px; border-radius: 8px; color: #3a2812;
  background: linear-gradient(180deg, #f6ecce, #e2d0a4); border: 2px solid var(--bronze);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 3px 8px rgba(60,40,10,.3);
}
.divider-label.na span { box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 0 0 2px rgba(200,52,47,.25), 0 3px 8px rgba(60,40,10,.3); }
.divider-label.eu span { box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 0 0 2px rgba(36,86,200,.25), 0 3px 8px rgba(60,40,10,.3); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  text-decoration: none; padding: 12px 26px; border-radius: 11px; cursor: pointer;
  color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.55); border: 2px solid var(--gold-deep);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.35), inset 0 -5px 9px rgba(0,0,0,.32), 0 7px 16px rgba(0,0,0,.4);
  transition: transform .12s, filter .2s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-primary { background: linear-gradient(180deg, #b877e0, var(--purple) 48%, #5a2a84); }
.btn-ghost   { background: linear-gradient(180deg, #58c0e4, var(--blue) 48%, #1a6086); }
.btn-live    { background: linear-gradient(180deg, #ff6b5e, #d81f1f 48%, #8a0f0f); border-color: #ffb3a6; animation: livePulse 1.6s ease-in-out infinite; }
.btn-live-big { font-size: 1.3rem; padding: 18px 42px; }
.live-banner { text-align: center; margin: 0 0 26px; }
.btn[hidden] { display: none; }
@keyframes livePulse {
  0%, 100% { box-shadow: inset 0 2px 0 rgba(255,255,255,.35), inset 0 -5px 9px rgba(0,0,0,.32), 0 7px 16px rgba(0,0,0,.4), 0 0 0 0 rgba(255,80,60,.55); }
  50%      { box-shadow: inset 0 2px 0 rgba(255,255,255,.35), inset 0 -5px 9px rgba(0,0,0,.32), 0 7px 16px rgba(0,0,0,.4), 0 0 0 14px rgba(255,80,60,0); }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(rgba(26,15,7,.72), rgba(20,11,5,.8)), #2a1a0d url("assets/ui/wood.jpg") center/cover;
  border-bottom: 3px solid #7a5310;
  box-shadow: 0 3px 0 rgba(0,0,0,.35), 0 6px 16px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,236,190,.12);
}
.nav { display: flex; align-items: center; gap: 14px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; text-decoration: none; color: var(--gold-lite); white-space: nowrap; text-shadow: 0 2px 3px rgba(0,0,0,.7); }
.nav-logo { display: inline-flex; align-items: center; filter: drop-shadow(0 2px 4px rgba(0,0,0,.6)); }
.nav-logo img { height: 34px; width: auto; max-width: none; }
.nav-logo .tilt-l { transform: rotate(-8deg); }
.nav-logo .tilt-r { transform: rotate(8deg); }
.nav-logo .vs-mini { height: 22px; margin: 0 -9px; position: relative; z-index: 2; transform: translateY(3px); }
.brand .vs { color: var(--gold); }
.nav-links { display: flex; gap: 6px; margin-left: auto; list-style: none; padding: 0; margin-block: 0; }
.nav-links a {
  text-decoration: none; color: #e6d3ac; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; padding: 8px 12px; border-radius: 8px; transition: color .2s, background .2s; text-shadow: 0 1px 2px rgba(0,0,0,.7);
}
.nav-links a:hover { color: #fff; background: rgba(244,196,48,.14); }
.nav .btn { padding: 9px 18px; font-size: .82rem; }
.nav-toggle { display: none; background: none; border: 0; color: #f3e7d2; font-size: 1.6rem; cursor: pointer; margin-left: auto; }

.hero {
  position: relative; min-height: calc(100vh - 64px); display: grid; overflow: hidden; text-align: center;
  background-color: #1b1108;
  background-image:
    radial-gradient(56% 44% at 50% 4%, rgba(255,206,120,.40), transparent 60%),
    radial-gradient(130% 82% at 50% 118%, rgba(0,0,0,.82), transparent 55%),
    radial-gradient(60% 55% at 10% 40%, rgba(200,52,47,.18), transparent 66%),
    radial-gradient(60% 55% at 90% 40%, rgba(36,86,200,.18), transparent 66%),
    linear-gradient(180deg, rgba(28,17,8,.4), rgba(12,7,3,.82)),
    url("assets/ui/wood.jpg");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-size: auto, auto, auto, auto, auto, 760px auto;
  background-position: center;
  box-shadow: inset 0 0 150px rgba(0,0,0,.6), inset 0 8px 24px rgba(0,0,0,.5);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold-deep), transparent); }
.hero-content { position: relative; z-index: 2; align-self: center; padding: 28px 0; }
.hero-badge {
  display: inline-block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .3em;
  font-size: clamp(.8rem, 1.6vw, .95rem); font-weight: 700; color: var(--gold); border: 1px solid var(--gold-deep);
  border-radius: 999px; padding: 9px 24px; margin-bottom: 26px; background: rgba(244,196,48,.06);
}
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hero-emblems { display: flex; align-items: center; justify-content: center; margin: 0 0 4px; }
.hero-emblems .region { width: clamp(150px, 30vw, 270px); height: auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.55)); }
.hero-emblems .region:first-child { transform: rotate(-8deg); }
.hero-emblems .region:last-child { transform: rotate(8deg); }
.hero-emblems .vs-badge { width: clamp(90px, 17vw, 165px); height: auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.7)); position: relative; z-index: 2; margin: 0 clamp(-42px, -4vw, -24px); transform: translateY(14px); }
.hero-sub { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .34em; font-size: clamp(1.1rem, 3vw, 1.7rem); color: #f3e7d2; margin: 18px 0 8px; }
.hero-tag { color: #e0cda6; font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 640px; margin: 8px auto 0; }
.hero-date { display: inline-flex; align-items: center; gap: 14px; margin-top: 20px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--gold-lite); }
.hero-date::before, .hero-date::after { content: ""; width: 40px; height: 2px; background: var(--gold); }
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.hero-cta .btn { font-size: 1.05rem; padding: 14px 30px; }
.countdown { display: flex; gap: 16px; justify-content: center; margin-top: 24px; }
.count-box { min-width: clamp(80px, 11vw, 108px); padding: 13px 12px; border-radius: 14px; background: linear-gradient(180deg, rgba(60,40,80,.6), rgba(0,0,0,.5)); border: 1px solid #6a4a2a; box-shadow: inset 0 1px 0 rgba(255,236,190,.16); }
.count-box .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 5.5vw, 3rem); line-height: 1; color: var(--gold-lite); }
.count-box .lbl { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; color: #cdbb98; margin-top: 7px; }

.hero-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 18px; max-width: 940px; margin: 0 auto 8px; }
.roster-group + .roster-group { margin-top: 44px; }
.bg-hero { text-align: center; }
.bg-hero img { width: 100%; height: auto; transition: transform .2s; filter: drop-shadow(0 9px 14px rgba(70,44,14,.45)); }
.bg-hero:hover img { transform: translateY(-6px) scale(1.03); }
.bg-hero-name { margin-top: 8px; font-family: var(--font-display); font-weight: 800; color: #2c1c0b; font-size: 1rem; line-height: 1.12; }
.roster-note { text-align: center; margin: 34px 0 0; font-family: var(--font-display); font-style: italic; font-weight: 600; color: #7a5a2e; font-size: 1.05rem; }

.parch-card {
  position: relative; border-radius: var(--radius); padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255,250,236,.82), rgba(238,224,193,.8));
  border: 2px solid var(--bronze); color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 12px 26px rgba(70,44,14,.28);
}
.parch-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin: 0 0 16px; color: #3a2712; }

.format-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.steps .n { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; background: linear-gradient(180deg, var(--purple-lo), var(--purple)); border: 2px solid var(--gold-deep); text-shadow: 0 1px 1px rgba(0,0,0,.4); }
.steps b { font-family: var(--font-display); font-weight: 700; color: #2c1c0b; }
.steps p { margin: 2px 0 0; color: #6a4f26; font-size: .95rem; }

.points-table { width: 100%; border-collapse: collapse; }
.points-table th, .points-table td { padding: 11px 12px; text-align: left; border-bottom: 1px solid var(--parch-line); }
.points-table th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: #8a6a30; }
.points-table td { color: #34240f; }
.points-table td:last-child, .points-table th:last-child { text-align: right; }
.points-table .pts { font-family: var(--font-display); font-weight: 800; color: #9a3418; font-size: 1.15rem; }
.points-table tr:last-child td { border-bottom: 0; }
.table-note { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--parch-line); font-size: .88rem; color: #6a4f26; }

.prize-total { text-align: center; margin: 0 auto clamp(28px,4vw,46px); max-width: 560px; padding: 30px; border-radius: var(--radius); border: 2px solid var(--gold-deep); background: radial-gradient(120% 130% at 50% 0, rgba(244,196,48,.2), rgba(30,18,40,.5) 72%); box-shadow: inset 0 0 0 1px rgba(255,236,190,.2), 0 16px 40px rgba(0,0,0,.4); }
.prize-total .amount { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 10vw, 5.4rem); color: var(--gold-lite); line-height: 1; text-shadow: 0 3px 0 rgba(0,0,0,.4); }
.prize-total .label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .22em; color: #cdbb98; font-size: .82rem; margin-top: 6px; }
.donate-btn { margin-top: 18px; }
.prize-list { display: grid; gap: 12px; max-width: 720px; margin: 0 auto; }
.prize-row { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px; border: 1px solid #4a3418; background: linear-gradient(180deg, rgba(50,32,60,.5), rgba(24,14,30,.6)); }
.prize-row .rank { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #cdbb98; text-align: center; }
.prize-row.gold { border-color: var(--gold-deep); }
.prize-row .medal { width: 44px; height: 44px; margin: 0 auto; border-radius: 50%; position: relative; box-shadow: inset 0 2px 3px rgba(255,255,255,.55), inset 0 -4px 6px rgba(0,0,0,.35), 0 4px 10px rgba(0,0,0,.45); }
.prize-row .medal::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 2px solid rgba(0,0,0,.22); }
.medal-gold   { background: radial-gradient(circle at 35% 30%, #ffe9a6, #f4c430 55%, #a06f12); }
.medal-silver { background: radial-gradient(circle at 35% 30%, #f4f4f4, #c9ced4 55%, #7e868f); }
.medal-bronze { background: radial-gradient(circle at 35% 30%, #e8b585, #b8792e 55%, #6f4415); }
.prize-row .desc { color: #f3e7d2; font-family: var(--font-display); font-weight: 700; }
.prize-row .desc small { display: block; font-family: var(--font-body); font-weight: 400; color: #b6a483; font-size: .82rem; }
.prize-row .val { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--gold-lite); }

.groups-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1040px; margin: 0 auto; }
.group-card {
  border-radius: var(--radius); padding: 24px; border: 2px solid var(--gold-deep);
  background: radial-gradient(130% 120% at 50% 0, rgba(244,196,48,.12), rgba(30,18,40,.55) 70%);
  box-shadow: inset 0 0 0 1px rgba(255,236,190,.18), 0 14px 32px rgba(0,0,0,.45);
}
.group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.group-head .g-num {
  width: 52px; height: 52px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: #fff;
  background: linear-gradient(180deg, var(--purple-lo), var(--purple)); border: 2px solid var(--gold-deep);
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.group-head b { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--gold-lite); display: block; line-height: 1.15; }
.group-head small { color: #b6a483; font-size: .85rem; }
.group-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 12px; }
.g-player { position: relative; }
.g-player > img:first-child { width: 100%; height: auto; filter: drop-shadow(0 6px 10px rgba(0,0,0,.5)); transition: transform .18s; }
.g-player:hover > img:first-child { transform: translateY(-4px) scale(1.04); }
.g-flag { position: absolute; right: -3px; bottom: -3px; width: 38%; height: auto; filter: drop-shadow(0 2px 5px rgba(0,0,0,.65)); pointer-events: none; }

.standings-list { list-style: none; margin: 0 auto; padding: 0; max-width: 720px; display: grid; gap: 10px; counter-reset: place; }
.stand-row { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; padding: 13px 18px; border-radius: 12px; border: 1px solid #4a3418; background: linear-gradient(180deg, rgba(50,32,60,.5), rgba(24,14,30,.6)); transition: opacity .3s; }
.stand-row .place { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: #cdbb98; text-align: center; }
.stand-row .player { font-family: var(--font-display); font-weight: 700; color: #f3e7d2; font-size: 1.1rem; }
.stand-row .player small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .76rem; color: #b6a483; text-transform: uppercase; letter-spacing: .08em; }
.stand-row .score { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--gold-lite); }
.stand-row.top { border-color: var(--gold-deep); background: radial-gradient(120% 140% at 50% 0, rgba(244,196,48,.16), rgba(24,14,30,.6) 75%); }
.stand-row.top .place { color: var(--gold-lite); }
.stand-row.check { box-shadow: 0 0 0 1px rgba(244,196,48,.55), 0 0 18px rgba(244,196,48,.25); }
.stand-row.out { opacity: .38; filter: grayscale(1); }
.stand-row.out .player { text-decoration: line-through; text-decoration-color: rgba(255,255,255,.5); }
.standings-note { text-align: center; color: #b6a483; font-size: .85rem; margin: 18px auto 0; max-width: 720px; }

.schedule-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: center; }
.sched-date { text-align: center; padding: 30px; }
.sched-date .dow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .2em; font-weight: 700; color: var(--purple); }
.sched-date .day { font-family: var(--font-display); font-weight: 900; font-size: clamp(4rem, 12vw, 6rem); line-height: .9; color: #9a3418; }
.sched-date .mon { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #3a2712; }
.sched-date .start { margin-top: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--purple); }
.sched-right { display: grid; gap: 10px; }
.day-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.day-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 18px; border-radius: 12px; border: 2px solid var(--gold-deep); background: linear-gradient(180deg, rgba(255,246,220,.9), rgba(240,222,180,.85)); }
.day-list .zone { font-family: var(--font-display); font-weight: 800; color: #2c1c0b; }
.day-list .zone small { display: block; font-family: var(--font-body); font-weight: 400; color: #7a5a2e; font-size: .78rem; }
.day-list .time { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: #9a3418; }
.sched-date .local { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--parch-line); font-size: .9rem; color: #6a4f26; }
.sched-date .local strong { color: #2c1c0b; }
.cal-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.btn-cal { justify-content: center; font-size: .88rem; padding: 11px 18px; }
.tz-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tz-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 18px; border-radius: 12px; border: 1px solid var(--bronze); background: linear-gradient(180deg, rgba(255,250,236,.75), rgba(238,224,193,.7)); }
.tz-list .zone { font-family: var(--font-display); font-weight: 700; color: #2c1c0b; }
.tz-list .zone small { display: block; font-family: var(--font-body); font-weight: 400; color: #7a5a2e; font-size: .78rem; }
.tz-list .time { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: #9a3418; }

.watch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 860px; margin: 0 auto; }
.watch-card {
  display: flex; flex-direction: column; gap: 8px; text-decoration: none; padding: 24px; border-radius: 14px;
  background: linear-gradient(180deg, #7d2222, #571414); color: #fff;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 2px var(--gold-deep), inset 0 0 0 1px rgba(255,236,190,.2), 0 12px 26px rgba(0,0,0,.45);
  transition: transform .2s, box-shadow .2s;
}
.watch-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 2px var(--gold-lite), 0 16px 30px rgba(0,0,0,.5); }
.watch-card .platform { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--gold-lite); }
.watch-card .handle { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.watch-card .role { color: #e8c9b6; font-size: .9rem; }
.watch-divider { display: flex; align-items: center; justify-content: center; gap: 16px; max-width: 860px; margin: 0 auto 22px; }
.watch-grid + .watch-divider { margin-top: 38px; }
.watch-divider::before, .watch-divider::after { content: ""; height: 2px; flex: 1; max-width: 220px; }
.watch-divider::before { background: linear-gradient(90deg, transparent, var(--gold-deep)); }
.watch-divider::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.watch-divider span { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; font-size: .82rem; color: var(--gold); }
.stream-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto; }
.stream-card {
  display: flex; flex-direction: column; align-items: center; text-decoration: none;
  padding: 18px 10px 14px; border-radius: 14px; border: 1px solid var(--gold-deep);
  background: linear-gradient(180deg, rgba(50,32,60,.55), rgba(24,14,30,.65));
  box-shadow: inset 0 1px 0 rgba(255,236,190,.14), 0 6px 14px rgba(0,0,0,.35);
  transition: transform .18s, border-color .2s, box-shadow .2s;
}
.stream-card img { width: 88px; height: auto; filter: drop-shadow(0 6px 10px rgba(0,0,0,.5)); transition: transform .18s; }
.stream-card .s-name { margin-top: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #f3e7d2; }
.stream-card .s-handle { font-family: var(--font-body); font-size: .74rem; color: #b18fd8; }
.stream-card .s-handle::before { content: "▶ twitch.tv"; }
.stream-card:hover { transform: translateY(-4px); border-color: var(--gold-lite); box-shadow: inset 0 1px 0 rgba(255,236,190,.2), 0 10px 20px rgba(0,0,0,.45), 0 0 14px rgba(244,196,48,.18); }
.stream-card:hover img { transform: scale(1.06); }

.site-footer { padding: 44px 0; text-align: center; color: #e9d3a8; background: #3a2410 url("assets/ui/wood.jpg") center/cover; border-top: 3px solid var(--gold-dark); box-shadow: inset 0 3px 0 rgba(255,236,190,.14); }
.site-footer .brand { font-size: 1.5rem; text-decoration: none; }
.footer-socials { display: flex; gap: 18px; justify-content: center; margin: 18px 0; list-style: none; padding: 0; }
.footer-socials a { text-decoration: none; color: #e9d3a8; font-family: var(--font-head); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; text-shadow: 0 1px 2px rgba(0,0,0,.6); }
.footer-socials a:hover { color: var(--gold-lite); }
.footer-note { font-size: .78rem; color: #cbb187; text-shadow: 0 1px 2px rgba(0,0,0,.6); max-width: 760px; margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .format-grid, .schedule-wrap, .groups-wrap { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(18,10,26,.98); border-bottom: 1px solid #3a2a12; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .nav-links.open { max-height: 440px; }
  .nav-links a { padding: 14px 20px; border-radius: 0; }
  .nav-links li { border-top: 1px solid #3a2a12; }
  .nav-toggle { display: block; }
  .nav .btn { display: none; }
}
@media (max-width: 560px) {
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
  .count-box { min-width: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
