/* North Georgia Wolfpack — Chastain */
/* Design system: dark cinematic sports-tech */

:root {
  --ink: #050506;
  --ink-2: #0b0b0e;
  --ink-3: #13131a;
  --ink-4: #1c1c25;
  --bone: #f3f2ee;
  --bone-dim: #c9c8c2;
  --wolf-red: #c41e3a;
  --wolf-red-hot: #e63946;
  --wolf-red-deep: #8a0f22;
  --wolf-red-glow: rgba(230, 57, 70, 0.55);
  --steel: #8a8d94;
  --steel-2: #5a5d63;
  --chrome-1: #e8e9eb;
  --chrome-2: #9a9ba0;
  --ball: #e8f25c;
  --grid: rgba(255, 255, 255, 0.04);
  --grid-strong: rgba(196, 30, 58, 0.18);
  --pad: clamp(16px, 4vw, 32px);
  --radius: 2px;
  --font-display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--ink); color: var(--bone); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { min-height: 100vh; position: relative; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Global ambient texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 30, 58, 0.12), transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(196, 30, 58, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Typographic primitives */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.85;
  text-transform: uppercase;
}
.head {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-dim); }
.eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--wolf-red-hot); }

/* Slash utility (diagonal ribbon) */
.slash {
  position: relative;
  display: inline-block;
}
.slash::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  top: 50%; height: 40%;
  transform: translateY(-50%) skewX(-18deg);
  background: var(--wolf-red);
  z-index: -1;
  filter: blur(0.5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--wolf-red);
  background: var(--wolf-red);
  color: var(--bone);
  position: relative;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn:hover { background: var(--wolf-red-hot); box-shadow: 0 0 24px var(--wolf-red-glow); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--bone); }
.btn.ghost:hover { background: rgba(196, 30, 58, 0.12); }
.btn .arrow { font-family: var(--font-mono); font-weight: 400; }

/* Corner brackets */
.corners {
  position: relative;
}
.corners::before, .corners::after,
.corners > .c-tl, .corners > .c-tr, .corners > .c-bl, .corners > .c-br {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--wolf-red);
  pointer-events: none;
}
.corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Grid overlay */
.grid-bg {
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Scan line animation */
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
.scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--wolf-red-glow), transparent);
  animation: scan 6s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

/* Claw slash keyframe */
@keyframes claw {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(120%) skewX(-18deg); opacity: 0; }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  41% { opacity: 1; }
  42% { opacity: 0.7; }
  43% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.5; }
  94% { opacity: 1; }
}
.flicker { animation: flicker 6s infinite; }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(230,57,70,0.0), inset 0 0 0 rgba(230,57,70,0); }
  50% { box-shadow: 0 0 32px rgba(230,57,70,0.35), inset 0 0 24px rgba(230,57,70,0.12); }
}

@keyframes stripeMove {
  from { background-position: 0 0; }
  to { background-position: 40px 0; }
}

@keyframes rotate360 { to { transform: rotate(360deg); } }

@keyframes chRing {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fadeup { animation: fadeUp 700ms cubic-bezier(.2,.7,.2,1) both; }

@keyframes sheen {
  0% { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}

/* Data-number tabular */
.tabnum { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }

/* Section utility */
.section { padding: clamp(56px, 10vw, 120px) var(--pad); position: relative; z-index: 2; }
.container { max-width: 1400px; margin: 0 auto; position: relative; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(5,5,6,0.92), rgba(5,5,6,0.6));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1; }
.nav-logo-text small { display: block; font-size: 10px; color: var(--wolf-red-hot); letter-spacing: 0.3em; margin-top: 4px; }
.nav-links { display: none; gap: 4px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  transition: color 150ms ease;
}
.nav-link:hover, .nav-link.active { color: var(--bone); }
.nav-link.active::before {
  content: ''; position: absolute; left: 10px; right: 10px; bottom: 2px; height: 2px;
  background: var(--wolf-red);
}
.nav-cta {
  padding: 10px 18px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--wolf-red); color: var(--bone);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-cta:hover { background: var(--wolf-red-hot); }
.nav-menu-btn {
  width: 40px; height: 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.15);
}
.nav-menu-btn span {
  display: block; height: 2px; background: var(--bone);
}
.nav-menu-btn span:nth-child(2) { width: 70%; background: var(--wolf-red-hot); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-menu-btn { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99;
  padding: 80px 24px 32px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 42px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--bone);
  position: relative;
}
.mobile-menu a .num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--wolf-red-hot);
  margin-right: 12px;
  vertical-align: top;
}

/* Footer */
footer {
  background: var(--ink-2);
  padding: 60px var(--pad) 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 2;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1400px; margin: 0 auto; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-bottom {
  max-width: 1400px; margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-dim);
}

/* Reusable card */
.card {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease;
}
.card:hover { border-color: var(--wolf-red); }

/* Image placeholder */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(196,30,58,0.12) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em;
  color: var(--bone-dim); text-transform: uppercase;
  aspect-ratio: 4 / 5;
  position: relative; overflow: hidden;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(196,30,58,0.2), transparent 55%);
}

/* Live dot */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--wolf-red-hot);
  box-shadow: 0 0 0 0 var(--wolf-red-glow);
  animation: pulseDot 1.6s infinite;
  vertical-align: middle;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

/* Tweaks panel */
.tweaks-panel {
  position: fixed; right: 16px; bottom: 16px;
  width: min(320px, calc(100vw - 32px));
  background: var(--ink-3);
  border: 1px solid var(--wolf-red);
  padding: 16px;
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 11px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(230,57,70,0.2);
}
.tweaks-panel h3 { font-family: var(--font-head); font-size: 13px; letter-spacing: 0.2em; color: var(--wolf-red-hot); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.tweaks-panel label { display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bone-dim); }
.tweaks-panel select, .tweaks-panel input[type=range] { width: 100%; margin-top: 4px; font-family: inherit; background: var(--ink-4); color: var(--bone); border: 1px solid rgba(255,255,255,0.1); padding: 6px; }
.tweaks-panel .row { display: flex; gap: 8px; }
.tweaks-panel .swatches { display: flex; gap: 6px; }
.tweaks-panel .swatches button { flex: 1; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.15); }
.tweaks-panel .swatches button.active { outline: 2px solid var(--bone); outline-offset: 2px; }

/* Hero animations */
@keyframes hero-grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, 60px 60px; }
}
.hero-grid-anim { animation: hero-grid-drift 18s linear infinite; }

@keyframes hero-sweep-move {
  0%   { top: 10%; opacity: 0; }
  5%   { opacity: 1; }
  45%  { top: 90%; opacity: 1; }
  50%  { top: 90%; opacity: 0; }
  50.1%{ top: 10%; opacity: 0; }
  55%  { top: 10%; opacity: 1; }
  95%  { top: 90%; opacity: 1; }
  100% { top: 90%; opacity: 0; }
}
.hero-sweep { animation: hero-sweep-move 7s ease-in-out infinite; }

/* ========== Hero Photo HUD Effects =================================== */

/* Enhanced sweep — thicker beam with trailing glow */
@keyframes hp-sweep {
  0%   { top: -4%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 104%; opacity: 0; }
}
.hp-sweep-beam {
  position: absolute; left: 0; right: 0;
  height: 80px; pointer-events: none; z-index: 6;
  background:
    linear-gradient(180deg, transparent 0%, rgba(230,57,70,0.0) 10%, rgba(230,57,70,0.12) 60%, rgba(230,57,70,0.5) 92%, rgba(255,80,95,1) 98%, rgba(255,255,255,0.9) 100%);
  filter: blur(0.5px) drop-shadow(0 0 10px rgba(230,57,70,0.9));
  mix-blend-mode: screen;
  animation: hp-sweep 9s cubic-bezier(0.6, 0.0, 0.4, 1) infinite;
}
.hp-sweep-line {
  position: absolute; left: 0; right: 0;
  height: 2px; pointer-events: none; z-index: 7;
  background: linear-gradient(90deg, transparent, rgba(255,200,200,0.9) 30%, #ffffff 50%, rgba(255,200,200,0.9) 70%, transparent);
  filter: drop-shadow(0 0 6px #e63946) drop-shadow(0 0 12px rgba(230,57,70,0.8));
  animation: hp-sweep 9s cubic-bezier(0.6, 0.0, 0.4, 1) infinite;
}

/* Embers rising */
@keyframes hp-ember {
  0%   { transform: translateY(20px) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-120%) translateX(var(--drift, 10px)); opacity: 0; }
}
.hp-ember {
  position: absolute; bottom: -10px;
  width: 3px; height: 3px; border-radius: 50%;
  background: radial-gradient(circle, #ffb0b8 0%, #e63946 45%, rgba(196,30,58,0) 100%);
  box-shadow: 0 0 6px rgba(230,57,70,0.9), 0 0 14px rgba(230,57,70,0.5);
  pointer-events: none;
  animation: hp-ember linear infinite;
  will-change: transform, opacity;
}

/* Breathing L-brackets at corners */
@keyframes hp-breath {
  0%, 100% { transform: scale(1);   opacity: 0.55; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.hp-corner {
  position: absolute; width: 44px; height: 44px; pointer-events: none; z-index: 6;
  animation: hp-breath 3.2s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(230,57,70,0.7));
}

/* Reticles — pulse rings + locked cross */
@keyframes hp-reticle-ring {
  0%   { transform: scale(0.55); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes hp-reticle-spin { to { transform: rotate(360deg); } }
@keyframes hp-reticle-fade-in { 0% { opacity: 0; transform: scale(0.6); } 100% { opacity: 1; transform: scale(1); } }
.hp-reticle {
  position: absolute; pointer-events: none; z-index: 7;
  width: 92px; height: 92px;
  transform: translate(-50%, -50%);
  animation: hp-reticle-fade-in 0.5s ease-out both;
}
.hp-reticle .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(230,57,70,0.9);
  animation: hp-reticle-ring 2.4s ease-out infinite;
}
.hp-reticle .ring.d { animation-delay: 1.2s; }
.hp-reticle .dash {
  position: absolute; inset: 18%; border-radius: 50%;
  border: 1px dashed rgba(230,57,70,0.8);
  animation: hp-reticle-spin 12s linear infinite;
}
.hp-reticle .cross-h, .hp-reticle .cross-v {
  position: absolute; background: linear-gradient(90deg, transparent, rgba(230,57,70,0.9), transparent);
}
.hp-reticle .cross-h { left: -20%; right: -20%; top: 50%; height: 1px; transform: translateY(-0.5px); }
.hp-reticle .cross-v {
  top: -20%; bottom: -20%; left: 50%; width: 1px; transform: translateX(-0.5px);
  background: linear-gradient(180deg, transparent, rgba(230,57,70,0.9), transparent);
}
.hp-reticle .dot {
  position: absolute; top: 50%; left: 50%; width: 6px; height: 6px;
  border-radius: 50%; background: #ff4757;
  box-shadow: 0 0 10px #e63946, 0 0 20px rgba(230,57,70,0.6);
  transform: translate(-50%, -50%);
}
.hp-reticle-label {
  position: absolute; z-index: 8; pointer-events: none;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(5,5,6,0.85);
  border: 1px solid rgba(230,57,70,0.7);
  padding: 5px 8px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(230,57,70,0.25);
  animation: hp-reticle-fade-in 0.5s ease-out 0.15s both;
}
.hp-reticle-label::before {
  content: ''; position: absolute; width: 26px; height: 1px;
  background: rgba(230,57,70,0.9);
  top: 50%;
}
.hp-reticle-label.right::before { left: -26px; }
.hp-reticle-label.left::before  { right: -26px; }
.hp-reticle-label .k { color: var(--wolf-red-hot); margin-right: 6px; }

/* Ticker — scrolling data edge */
@keyframes hp-ticker { to { transform: translateX(-50%); } }
.hp-ticker {
  position: absolute; left: 0; right: 0; overflow: hidden;
  z-index: 7; pointer-events: none;
  background: linear-gradient(90deg, rgba(5,5,6,0.75), rgba(5,5,6,0.55), rgba(5,5,6,0.75));
  border-top: 1px solid rgba(230,57,70,0.35);
  border-bottom: 1px solid rgba(230,57,70,0.35);
  backdrop-filter: blur(4px);
}
.hp-ticker-track {
  display: inline-flex; white-space: nowrap;
  animation: hp-ticker 38s linear infinite;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em;
  color: var(--bone-dim); text-transform: uppercase;
  padding: 6px 0;
}
.hp-ticker-track > span { padding: 0 22px; }
.hp-ticker-track > span.hot { color: var(--wolf-red-hot); }
.hp-ticker-track > span > i { color: rgba(255,255,255,0.35); font-style: normal; margin: 0 10px; }

/* Duotone flash — periodic red wash */
@keyframes hp-duotone {
  0%, 88%, 100% { opacity: 0; }
  91%, 95%      { opacity: 0.6; }
}
.hp-duotone {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(135deg, rgba(230,57,70,0.9), rgba(120,15,30,0.7));
  mix-blend-mode: color;
  animation: hp-duotone 14s ease-in-out infinite;
}

/* Grain + chromatic fringe */
.hp-grain {
  position: absolute; inset: -4%; z-index: 5; pointer-events: none;
  opacity: 0.14;
  background-image:
    radial-gradient(rgba(255,255,255,0.6) 0.5px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.7) 0.5px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
  animation: hp-grain-shift 0.5s steps(3) infinite;
}
@keyframes hp-grain-shift {
  0%   { transform: translate(0,0); }
  33%  { transform: translate(-2px,1px); }
  66%  { transform: translate(1px,-2px); }
  100% { transform: translate(0,0); }
}
.hp-fringe {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  mix-blend-mode: screen; opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255,0,40,0.25) 0%, transparent 12%, transparent 88%, rgba(0,120,255,0.2) 100%);
}

/* Glitch slice — occasional horizontal tear */
@keyframes hp-glitch {
  0%, 96%, 100% { opacity: 0; transform: translateX(0); }
  96.5% { opacity: 1; transform: translateX(-4px); }
  97%   { opacity: 1; transform: translateX(6px); }
  97.5% { opacity: 1; transform: translateX(-2px); }
  98%   { opacity: 0; transform: translateX(0); }
}
.hp-glitch {
  position: absolute; left: 0; right: 0;
  height: 14px; z-index: 7; pointer-events: none;
  top: var(--top, 40%);
  background: linear-gradient(180deg, transparent, rgba(230,57,70,0.35) 40%, rgba(230,57,70,0.8) 50%, rgba(230,57,70,0.35) 60%, transparent);
  mix-blend-mode: screen;
  animation: hp-glitch 11s steps(1) infinite;
  animation-delay: var(--delay, 0s);
}

/* WP watermark drifting */
@keyframes hp-wp-drift {
  0%   { transform: translate(-50%, -50%) scale(1)    rotate(-4deg); opacity: 0.08; }
  50%  { transform: translate(-48%, -52%) scale(1.05) rotate(-2deg); opacity: 0.14; }
  100% { transform: translate(-50%, -50%) scale(1)    rotate(-4deg); opacity: 0.08; }
}
.hp-wp-mark {
  position: absolute; top: 50%; left: 50%;
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-weight: 900;
  font-size: clamp(160px, 30vw, 420px);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(230,57,70,0.8);
  z-index: 3; pointer-events: none;
  animation: hp-wp-drift 18s ease-in-out infinite;
  mix-blend-mode: screen;
}

/* THE STANDARD banner rising */
@keyframes hp-standard-rise {
  0%   { transform: translateY(20px); opacity: 0; }
  18%, 82% { transform: translateY(0);  opacity: 1; }
  100% { transform: translateY(-20px); opacity: 0; }
}
.hp-standard {
  position: absolute; left: 0; right: 0; top: 32%;
  text-align: center; z-index: 4; pointer-events: none;
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 11vw, 180px);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.28);
  text-transform: uppercase;
  mix-blend-mode: screen;
  animation: hp-standard-rise 16s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(230,57,70,0.35));
}

@media (prefers-reduced-motion: reduce) {
  .hp-sweep-beam, .hp-sweep-line, .hp-ember, .hp-corner,
  .hp-duotone, .hp-grain, .hp-glitch, .hp-wp-mark, .hp-standard,
  .hp-ticker-track, .hp-reticle .ring, .hp-reticle .dash {
    animation: none !important;
  }
}

@keyframes hero-dots-drift {
  0%   { background-position: 0 0; transform: translateY(0); }
  100% { background-position: 120px -80px; transform: translateY(-6px); }
}
.hero-dots { animation: hero-dots-drift 24s linear infinite alternate; }

/* ----- GameChanger widget wolfpack theme ------------------------------ */
.gc-wolfpack-frame [class*="gc-"],
.gc-wolfpack-frame [id*="gc-"] > div,
.gc-wolfpack-frame iframe {
  background: transparent !important;
  color: var(--bone) !important;
}

/* The widget renders inside an iframe we can't style directly, but we can
   filter-invert dark it so the widget looks dark and reads against our frame. */
.gc-wolfpack-frame iframe {
  filter: invert(1) hue-rotate(180deg) contrast(0.92) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 0 !important;
  background: transparent !important;
  min-height: 440px;
  width: 100% !important;
  display: block;
}

/* Non-iframe text children */
.gc-wolfpack-frame * {
  font-family: var(--font-body) !important;
}
.gc-wolfpack-frame h1,
.gc-wolfpack-frame h2,
.gc-wolfpack-frame h3,
.gc-wolfpack-frame h4 {
  font-family: var(--font-head) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--bone) !important;
}
.gc-wolfpack-frame a {
  color: var(--wolf-red-hot) !important;
}
/* Minimum render area while loading */
#gc-schedule-widget-td7v,
#gc-schedule-widget-td7v-sched {
  min-height: 440px;
}
