/* Extracted from index.html block 1 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #11120f;
  --panel: #191914;
  --panel2: #252216;
  --border: rgba(232, 209, 157, 0.15);
  --border2: rgba(232, 209, 157, 0.24);
  --text: #eee2c8;
  --muted: #8f846e;
  --muted2: #b6a98c;
  --accent: #d5532f;
  --accent2: #f0b75d;
  --s3: #d5bd55;
  --s4: #7a8cc4;
  --s5: #c86a37;
  --blue: #5a9cb5;
  --field-green: #6d8c5b;
  --ink: #171510;
  --font-head: 'DIN Condensed', 'Avenir Next Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Menlo', 'SFMono-Regular', 'Courier New', monospace;
}
html { scroll-behavior: smooth; font-size: clamp(15px, 0.95vw, 20px); }
body {
  background:
    linear-gradient(90deg, rgba(238, 226, 200, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(238, 226, 200, .025) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(213,83,47,.13), transparent 58%),
    radial-gradient(ellipse 60% 50% at 88% 12%, rgba(90,156,181,.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(109,140,91,.08), transparent 60%),
    var(--bg);
  background-size: 28px 28px, 28px 28px, auto, auto, auto, auto;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(238,226,200,.06) 42% 42.4%, transparent 42.4%),
    repeating-linear-gradient(0deg, rgba(238,226,200,.025) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
}

/* ── AMBIENT PARTICLES (from desert tool) ── */
#ambient {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
  opacity: .45;
}
#ambient span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: rgba(255,179,71,0.4);
  animation: sandFloat linear infinite;
}
@keyframes sandFloat {
  0%   { transform: translateY(100vh) translateX(0);   opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(-8vh) translateX(50px); opacity: 0; }
}

/* ── RADAR RINGS ── */
#radar {
  position: fixed; top: 46%; left: 50%; transform: translate(-50%, -50%);
  width: min(900px, 90vw); height: min(900px, 90vw);
  border-radius: 50%; border: 1px solid rgba(238,183,93,0.08);
  pointer-events: none; z-index: 0;
  animation: radarPulse 5s ease-in-out infinite;
}
#radar::before, #radar::after {
  content: ''; position: absolute; inset: 12%; border-radius: 50%;
  border: 1px solid rgba(232,114,12,0.04);
}
#radar::after { inset: 28%; border-color: rgba(232,114,12,0.03); }
@keyframes radarPulse {
  0%,100% { box-shadow: 0 0 0   0  rgba(232,114,12,0.04); }
  50%      { box-shadow: 0 0 80px 8px rgba(232,114,12,0.06); }
}

/* ── DUNES (bottom) ── */
#dunes {
  position: fixed; bottom: 0; left: -5%; right: -5%; height: 28%;
  pointer-events: none; z-index: 0; opacity: 0.18;
}
#dunes svg { width: 100%; height: 100%; display: block; }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: min(760px, calc(100vh - 62px));
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(72px, 9vw, 132px) clamp(22px, 7vw, 96px) clamp(72px, 8vw, 110px);
  text-align: left;
  overflow: hidden;
  animation: heroFade 0.9s 0.1s both;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 20px clamp(18px, 4vw, 54px) 20px clamp(18px, 4vw, 54px);
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17,18,15,.96) 0%, rgba(17,18,15,.78) 38%, rgba(17,18,15,.2) 66%, rgba(17,18,15,.86) 100%),
    url('../../generated/field-command-hero.png') center right / cover no-repeat;
  border: 1px solid rgba(238,226,200,.18);
  box-shadow: 0 32px 90px rgba(0,0,0,.48);
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 36px 100%, 0 calc(100% - 36px));
}
.hero::after {
  content: 'SERVER 1606 / FIELD GUIDE';
  position: absolute;
  right: clamp(24px, 5vw, 70px);
  bottom: 42px;
  z-index: -1;
  color: rgba(238,226,200,.22);
  font: 650 .68rem/1 var(--font-mono);
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}
@keyframes heroFade { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 2px; color: var(--accent2); text-transform: uppercase;
  margin-bottom: 20px; opacity: 0.95;
  padding: 8px 12px;
  background: rgba(17,18,15,.72);
  border: 1px solid rgba(240,183,93,.25);
}
.hero-badge-line { display: inline-block; width: 28px; height: 1px; background: var(--accent); opacity: 0.5; }

.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem, 10vw, 7rem);
  line-height: 0.88; letter-spacing: -1px;
  color: var(--text); margin-bottom: 4px;
  animation: heroTitleIn 1s 0.2s both;
}
@keyframes heroTitleIn {
  from { opacity:0; transform:translateY(-20px) scale(0.96); }
  to   { opacity:1; transform:none; }
}
.hero-title-accent {
  display: block; color: var(--accent);
  text-shadow: 0 0 50px rgba(232,114,12,0.55), 0 0 120px rgba(232,114,12,0.2);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 50px rgba(232,114,12,0.55), 0 0 120px rgba(232,114,12,0.2); }
  50%     { text-shadow: 0 0 70px rgba(232,114,12,0.75), 0 0 160px rgba(232,114,12,0.35); }
}
.hero-logo-img {
  width: clamp(138px, 16vw, 220px); height: clamp(138px, 16vw, 220px);
  display: block; margin: 0 0 12px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.5));
  animation: heroTitleIn 1s 0.2s both;
}
@keyframes heroLogoFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.hero-sub {
  max-width: 760px;
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.2rem, 7vw, 6.8rem);
  line-height: .82;
  letter-spacing: 0; color: var(--text);
  text-transform: uppercase; margin: 20px 0 16px;
  white-space: pre-line;
  animation: heroFade 0.8s 0.5s both;
}
.hero-desc {
  max-width: 610px; margin: 0 0 38px;
  color: rgba(238,226,200,0.72); font-size: clamp(.98rem, 1.4vw, 1.12rem); line-height: 1.65;
  animation: heroFade 0.8s 0.65s both;
}
.hero-ctas {
  display: flex; gap: 10px; justify-content: flex-start; flex-wrap: wrap;
  animation: heroFade 0.8s 0.8s both;
}
.hero-cta-primary {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 20px; border-radius: 0; text-decoration: none;
  background: var(--accent2); color: var(--ink);
  transition: all 0.2s; position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.hero-cta-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2), transparent 70%);
  transform: translateX(-120%); transition: transform 0.6s;
}
.hero-cta-primary:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,114,12,0.4); }
.hero-cta-primary:hover::after { transform: translateX(120%); }
.hero-cta-secondary {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 20px; border-radius: 0; text-decoration: none;
  border: 1px solid rgba(238,226,200,0.38); color: var(--text);
  transition: all 0.2s;
  background: rgba(17,18,15,.62);
}
.hero-cta-secondary:hover { border-color: rgba(232,114,12,0.7); background: rgba(232,114,12,0.1); transform: translateY(-2px); }

/* ── STAT STRIP ── */
.stat-strip {
  position: relative; z-index: 1;
  max-width: 1360px; margin: 0 auto 72px; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  animation: heroFade 0.8s 1s both;
}
.stat-item {
  background: rgba(238,226,200,0.06);
  border: 1px solid var(--border); padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.2s;
}
.stat-item:first-child { border-radius: 0; }
.stat-item:last-child  { border-radius: 0; }
.stat-item:hover { background: rgba(232,114,12,0.05); border-color: rgba(232,114,12,0.2); }
.stat-val { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--accent2); line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 1.5px; color: var(--muted2); text-transform: uppercase; }

/* ── SECTION LABEL ── */
.sec-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
}
.sec-label-text { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 2px; color: var(--accent2); text-transform: uppercase; white-space: nowrap; }
.sec-label-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(240,183,93,0.42), transparent); }

/* ── SEASON CARDS ── */
.seasons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 70px;
}
@media (max-width: 1000px) { .seasons { grid-template-columns: 1fr; } }

.s-card {
  display: flex; flex-direction: column;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(13,21,32,0.8), rgba(8,14,22,0.6));
  backdrop-filter: blur(10px);
  text-decoration: none; color: inherit;
  transition: transform 0.28s cubic-bezier(.2,.8,.4,1.1), box-shadow 0.28s, border-color 0.25s;
  animation: cardIn 0.6s both;
  position: relative;
}
@keyframes cardIn { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
.s-card:nth-child(1) { animation-delay: 0.1s; }
.s-card:nth-child(2) { animation-delay: 0.22s; }
.s-card:nth-child(3) { animation-delay: 0.34s; }

.s-card:hover { transform: translateY(-6px); }

/* Inner glow on hover */
.s-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, currentColor, transparent 65%);
  mix-blend-mode: screen;
}
.s-card:hover::before { opacity: 0.06; }

.s-stripe { height: 3px; }
.s-banner {
  padding: 28px 28px 20px;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.s-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 12px currentColor);
  transition: filter 0.3s, transform 0.3s;
}
.s-card:hover .s-icon { filter: drop-shadow(0 0 22px currentColor); transform: scale(1.08); }
.s-season-tag {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 3px;
  padding: 4px 10px; border-radius: 20px; opacity: 0.85;
}
.s-body { padding: 0 28px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.s-name { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; line-height: 1; }
.s-desc { font-size: 0.88rem; color: rgba(204,216,232,0.5); line-height: 1.75; flex: 1; }
.s-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.s-tag { font-family: var(--font-mono); font-size: 0.6rem; padding: 3px 9px; border-radius: 20px; letter-spacing: 0.5px; }
.s-footer {
  padding: 14px 28px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.s-footer-label { font-family: var(--font-mono); font-size: 0.62rem; color: var(--muted); letter-spacing: 1px; }
.s-cta {
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1.5px; display: flex; align-items: center; gap: 4px;
}
.s-cta-arrow { transition: transform 0.2s; display: inline-block; }
.s-card:hover .s-cta-arrow { transform: translateX(4px); }

/* ── TOOL CARDS ── */
.tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 70px; }
@media (max-width: 1100px) { .tools { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tools { grid-template-columns: 1fr; } }

.t-card {
  border-radius: 0; border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(238,226,200,.07), rgba(238,226,200,.025)),
    rgba(25,25,20,0.86);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  animation: cardIn 0.6s both;
}
.t-card:first-child {
  background:
    linear-gradient(90deg, rgba(17,18,15,.88), rgba(17,18,15,.5)),
    url('../../generated/tactical-board-tile.png') center / cover no-repeat;
}
.t-card:nth-child(1) { animation-delay: 0.15s; }
.t-card:nth-child(2) { animation-delay: 0.25s; }
.t-card:nth-child(3) { animation-delay: 0.35s; }
.t-card:nth-child(4) { animation-delay: 0.45s; }
.t-card:hover { transform: translateY(-4px); }

.t-head { display: flex; align-items: center; gap: 12px; }
.t-icon-box {
  width: 42px; height: 42px; border-radius: 0; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  transition: transform 0.2s;
}
.t-card:hover .t-icon-box { transform: scale(1.08); }
.t-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 2px; opacity: 0.7; text-transform: uppercase; }
.t-name  { font-family: var(--font-head); font-weight: 700; font-size: 1rem; letter-spacing: 0.5px; }
.t-desc  { font-size: 0.8rem; color: rgba(204,216,232,0.45); line-height: 1.65; }
.t-tags  { display: flex; flex-wrap: wrap; gap: 4px; }
.t-tag   { font-family: var(--font-mono); font-size: 0.58rem; padding: 2px 7px; border-radius: 12px; }

/* ── EVENT GRID ── */
.events { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 1100px) { .events { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .events { grid-template-columns: 1fr 1fr; } }

.e-card {
  border-radius: 0; border: 1px solid var(--border);
  background: rgba(238,226,200,0.055);
  padding: 18px; display: flex; flex-direction: column; gap: 7px;
  text-decoration: none; color: inherit;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  animation: cardIn 0.6s both;
}
.e-card:nth-child(1) { animation-delay: 0.1s; }
.e-card:nth-child(2) { animation-delay: 0.18s; }
.e-card:nth-child(3) { animation-delay: 0.26s; }
.e-card:nth-child(4) { animation-delay: 0.34s; }
.e-card:nth-child(5) { animation-delay: 0.42s; }
.e-card:hover { transform: translateY(-3px); border-color: rgba(232,114,12,0.3); background: rgba(232,114,12,0.04); }
.e-icon { font-size: 1.5rem; transition: transform 0.25s; }
.e-card:hover .e-icon { transform: scale(1.15) rotate(-4deg); }
.e-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--accent2); letter-spacing: 0.5px; }
.e-desc { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(238,226,200,0.14);
  padding: 40px 40px; margin-top: 80px;
}
.footer-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.footer-badges { display: flex; align-items: center; gap: 10px; }
.footer-badge {
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 20px;
}
.footer-live { display: flex; align-items: center; gap: 7px; }
.footer-dot { width: 6px; height: 6px; border-radius: 50%; background: #39ff14; animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.4)} }
.footer-live-text { font-family: var(--font-mono); font-size: 0.62rem; color: var(--muted); letter-spacing: 2px; }
.footer-imprint { font-family: var(--font-mono); font-size: 0.62rem; color: var(--muted); text-decoration: none; opacity: 0.5; transition: opacity 0.2s; }
.footer-imprint:hover { opacity: 1; }

/* ── TWEAKS PANEL ── */
#tweaks-panel {
  display: none; position: fixed; bottom: 24px; right: 24px;
  width: 255px; background: rgba(6,10,18,0.97);
  border: 1px solid var(--border2); border-radius: 14px; padding: 20px;
  z-index: 9999; backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.75);
}
#tweaks-panel.open { display: block; animation: heroFade 0.25s ease; }
#tweaks-panel h4 { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.tw-row { margin-bottom: 14px; }
.tw-row label { display: block; font-size: 0.68rem; color: var(--muted2); letter-spacing: 1px; margin-bottom: 6px; font-family: var(--font-mono); }
.tw-row select { width: 100%; background: var(--panel2); border: 1px solid var(--border); border-radius: 7px; color: var(--text); font-family: var(--font-mono); font-size: 0.72rem; padding: 7px 10px; cursor: pointer; outline: none; }
.tw-row select:focus { border-color: rgba(232,114,12,0.4); }
.tw-swatches { display: flex; gap: 7px; flex-wrap: wrap; }
.tw-swatch { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.tw-swatch:hover, .tw-swatch.active { border-color: white; transform: scale(1.18); }

/* ── CONTENT WRAPPER ── */
.content { position: relative; z-index: 1; max-width: 1360px; margin: 0 auto; padding: 0 40px 0; }

.next-season-card {
  border-radius: 0 !important;
  background:
    linear-gradient(135deg, rgba(25,25,20,.96), rgba(17,18,15,.82)) !important;
  border-color: rgba(213,189,85,.26) !important;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.next-season-left > div > div:first-child > div {
  border-radius: 0 !important;
  font-family: var(--font-mono) !important;
  font-size: .58rem !important;
  font-weight: 700 !important;
  letter-spacing: 2.2px !important;
  padding: 6px 11px !important;
  background: rgba(213,189,85,.08) !important;
  border-color: rgba(213,189,85,.28) !important;
  color: #d5bd55 !important;
}

.next-season-left > div > div:first-child > div:nth-child(2) {
  background: rgba(109,140,91,.12) !important;
  border-color: rgba(109,140,91,.38) !important;
  color: #93b979 !important;
}

.next-season-left > div > div:nth-child(2) {
  font-family: var(--font-head) !important;
  font-size: clamp(2.8rem, 5vw, 4.6rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: .82 !important;
  color: #d5bd55 !important;
  text-transform: uppercase !important;
}

.next-season-left p {
  font-family: var(--font-body) !important;
  color: rgba(238,226,200,.68) !important;
  font-size: .95rem !important;
  line-height: 1.62 !important;
}

.next-season-left span {
  border-radius: 0 !important;
  font-family: var(--font-mono) !important;
  letter-spacing: .8px !important;
}

.next-season-left > div + div span:first-child,
.next-season-left > div + div span:last-child {
  color: var(--accent2) !important;
}

.archive-grid > a {
  border-radius: 0 !important;
  background: rgba(238,226,200,.045) !important;
}

.archive-grid > a > div:first-child > div:nth-child(2) > div:first-child {
  font-family: var(--font-mono) !important;
  font-size: .58rem !important;
  font-weight: 700 !important;
  letter-spacing: 2.2px !important;
  color: rgba(238,226,200,.54) !important;
}

.archive-grid > a > div:first-child > div:nth-child(2) > div:last-child {
  font-family: var(--font-head) !important;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: .88 !important;
  text-transform: uppercase !important;
}

.archive-grid > a:nth-child(1) > div:first-child > div:nth-child(2) > div:last-child {
  color: #9aa8db !important;
}

.archive-grid > a:nth-child(2) > div:first-child > div:nth-child(2) > div:last-child {
  color: #d27a46 !important;
}

.archive-grid > a p {
  font-family: var(--font-body) !important;
  color: rgba(238,226,200,.48) !important;
  font-size: .84rem !important;
  line-height: 1.55 !important;
}

.archive-grid > a span {
  border-radius: 0 !important;
  font-family: var(--font-mono) !important;
}

.season-art {
  position: relative;
  z-index: 1;
  width: min(240px, 58%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(213,189,85,.32);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 42px rgba(213,189,85,.18);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.season-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(238,226,200,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.season-thumb-s4 { border-color: rgba(122,140,196,.35); }
.season-thumb-s5 { border-color: rgba(200,106,55,.35); }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 900px) {
  .next-season-card { grid-template-columns: 1fr !important; }
  .next-season-right { min-height: 240px !important; border-left: none !important; border-top: 1px solid rgba(255,255,255,0.05) !important; }
  .next-season-left { padding: 28px !important; }
  .season-art { width: min(210px, 62%); }
}

@media (max-width: 700px) {
  .content { padding: 0 18px; }
  .hero { padding: 56px 18px 48px; }
  .hero::before { inset: 10px; background-position: center; }
  .hero::after { display: none; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 4.5rem) !important; }
  .hero-sub { font-size: 0.85rem; letter-spacing: 3px; }
  .hero-badge { font-size: 0.55rem; letter-spacing: 3px; }
  .hero-badge-line { width: 18px; }
  .hero-desc { font-size: 0.88rem; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0; }
  .hero-ctas a { width: 100%; text-align: center; }
  .stat-strip { padding: 0 18px; grid-template-columns: 1fr 1fr; gap: 2px; }
  .stat-item:nth-child(1) { border-radius: 12px 0 0 0; }
  .stat-item:nth-child(2) { border-radius: 0 12px 0 0; }
  .stat-item:nth-child(3) { border-radius: 0 0 0 12px; }
  .stat-item:nth-child(4) { border-radius: 0 0 12px 0; }
  .stat-val { font-size: 1.6rem; }
  .sec-label-text { font-size: 0.55rem; letter-spacing: 3px; }
}

@media (max-width: 500px) {
  .events { grid-template-columns: 1fr 1fr !important; }
  .archive-grid { grid-template-columns: 1fr !important; }
  #intro-title { font-size: clamp(2.5rem, 16vw, 4.5rem) !important; }
}

/* ── COUNTDOWN ── */
.season-countdown{display:flex;flex-direction:column;align-items:center;gap:10px;padding:20px 24px;background:rgba(232,200,50,0.06);border:1px solid rgba(232,200,50,0.22);border-radius:14px;margin:0 auto 0;max-width:440px;width:100%;}
.cd-label{font-family:var(--font-head);font-size:.68rem;letter-spacing:3px;color:#e8c832;text-transform:uppercase;opacity:.85;}
.cd-digits{display:flex;align-items:flex-end;gap:6px;}
.cd-unit{display:flex;flex-direction:column;align-items:center;gap:3px;}
.cd-num{font-family:var(--font-head);font-size:1.9rem;font-weight:800;color:#e8c832;line-height:1;min-width:50px;text-align:center;background:rgba(232,200,50,0.08);border:1px solid rgba(232,200,50,0.18);border-radius:8px;padding:6px 8px;}
.cd-sub{font-family:var(--font-mono);font-size:.46rem;letter-spacing:2px;color:var(--muted);text-transform:uppercase;}
.cd-sep{font-family:var(--font-head);font-size:1.5rem;font-weight:800;color:rgba(232,200,50,0.3);padding-bottom:14px;}

/* Extracted from index.html block 2 */
@keyframes introFadeIn   { to { opacity:1; } }
@keyframes introSlideDown { from{opacity:0;transform:translateY(-22px) scale(0.96)} to{opacity:1;transform:none} }
@keyframes introPulse    { 0%,100%{box-shadow:0 0 0 0 rgba(232,114,12,0.5)} 50%{box-shadow:0 0 0 18px rgba(232,114,12,0)} }
@keyframes hintBlink     { 0%,100%{opacity:0.25} 50%{opacity:0.85} }

/* Extracted from index.html block 3 */
@keyframes floatIcon{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
