:root {
  --bg: #030507;
  --panel: rgba(9, 13, 18, 0.76);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4fbff;
  --muted: #9fb4bc;
  --cyan: #00f0ff;
  --pink: #ff2f92;
  --green: #6cff7f;
  --amber: #ffd166;
  --violet: #8d63ff;
  --discord: #5865f2;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Rajdhani", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 47, 146, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(0, 240, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 78% 88%, rgba(108, 255, 127, 0.11), transparent 26rem),
    var(--bg);
}

a,
button {
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 88%);
}

#signal-grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: overlay;
  opacity: 0.32;
}

.cyber-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 160ms ease;
  mix-blend-mode: screen;
}

.cursor-ring,
.cursor-core,
.cursor-line {
  position: absolute;
  pointer-events: none;
}

.cursor-ring {
  inset: 0;
  border: 1px solid rgba(0, 240, 255, 0.84);
  border-radius: 50%;
  box-shadow:
    0 0 14px rgba(0, 240, 255, 0.44),
    inset 0 0 10px rgba(255, 47, 146, 0.16);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cursor-core {
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(108, 255, 127, 0.8);
  transform: translate(-50%, -50%);
}

.cursor-line {
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.cursor-line-x {
  width: 54px;
  height: 1px;
}

.cursor-line-y {
  width: 1px;
  height: 54px;
}

.cyber-cursor.is-visible {
  opacity: 1;
}

.cyber-cursor.is-hovering .cursor-ring {
  border-color: rgba(255, 47, 146, 0.95);
  box-shadow:
    0 0 20px rgba(255, 47, 146, 0.55),
    inset 0 0 16px rgba(0, 240, 255, 0.24);
  transform: scale(1.42);
}

.cyber-cursor.is-hovering .cursor-core {
  background: #ffffff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.9);
}

.cyber-cursor.is-danger .cursor-ring {
  border-color: rgba(255, 18, 18, 0.98) !important;
  border-width: 2px;
  transition: none;
  box-shadow:
    0 0 16px rgba(255, 34, 34, 0.8),
    0 0 34px rgba(255, 47, 47, 0.45),
    inset 0 0 14px rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle, rgba(255, 0, 0, 0.18), rgba(255, 0, 0, 0.02) 58%, transparent 60%);
  animation: cursor-danger-pulse 720ms ease-in-out infinite;
}

.cyber-cursor.is-danger {
  mix-blend-mode: normal;
}

.cyber-cursor.is-danger .cursor-core {
  background: #ff2424;
  box-shadow: 0 0 16px rgba(255, 36, 36, 0.95);
}

.cyber-cursor.is-danger .cursor-line {
  background: rgba(255, 78, 78, 0.88);
}

.cyber-cursor.is-firing .cursor-ring {
  animation: cursor-shot 260ms ease-out, cursor-danger-pulse 720ms ease-in-out infinite 260ms;
}

.cyber-cursor.is-firing .cursor-core {
  animation: cursor-core-shot 260ms ease-out;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 52px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: center;
  padding: 44px 0 24px;
}

.identity {
  position: relative;
  min-width: 0;
  padding: 30px 0;
  container-type: inline-size;
}

.identity::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 4px;
  height: 92%;
  background: linear-gradient(var(--cyan), var(--pink), var(--green));
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.55);
}

.avatar-live-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  margin-bottom: 28px;
}

.avatar-frame {
  position: relative;
  width: clamp(132px, 17vw, 188px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  isolation: isolate;
  overflow: visible;
}

.avatar-frame::after {
  content: "";
  position: absolute;
  inset: -13px;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.34) 18% 22%, transparent 22% 100%),
    repeating-linear-gradient(
      to bottom,
      rgba(0, 240, 255, 0.4) 0 2px,
      transparent 2px 7px,
      rgba(255, 47, 146, 0.32) 7px 9px,
      transparent 9px 15px
    );
  mix-blend-mode: screen;
}

.avatar-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 0 9px rgba(0, 240, 255, 0.08),
    0 0 46px rgba(255, 47, 146, 0.42);
}

.bullet-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.bullet-hole {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(28px, 20%, 42px);
  height: clamp(28px, 20%, 42px);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, #000 0 10%, rgba(6, 6, 6, 0.98) 11% 16%, transparent 17%),
    radial-gradient(circle at 50% 50%, transparent 0 23%, rgba(245, 254, 255, 0.82) 24% 25%, transparent 27% 39%, rgba(245, 254, 255, 0.42) 40% 41%, transparent 43%),
    repeating-conic-gradient(
      from var(--r, 0deg),
      rgba(235, 252, 255, 0.9) 0deg 3deg,
      transparent 3deg 11deg,
      rgba(178, 224, 232, 0.46) 11deg 13deg,
      transparent 13deg 29deg
    ),
    radial-gradient(circle, rgba(244, 254, 255, 0.72) 0 18%, rgba(203, 246, 255, 0.2) 28%, transparent 66%);
  background-blend-mode: normal, screen, screen;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34),
    0 0 8px rgba(214, 248, 255, 0.58),
    inset 0 0 7px rgba(255, 255, 255, 0.52);
  filter: contrast(1.5) brightness(1.08) saturate(0.88);
  mix-blend-mode: screen;
  animation: bullet-impact 260ms cubic-bezier(0.2, 0.9, 0.2, 1.35) forwards;
}

.bullet-hole::before,
.bullet-hole::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 94%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0 10%, rgba(235, 252, 255, 0.9) 34%, rgba(255, 255, 255, 0.2), transparent 82%);
  transform: translate(-50%, -50%) rotate(var(--r, 18deg)) scaleX(var(--sx, 1));
}

.bullet-hole::after {
  width: 86%;
  transform: translate(-50%, -50%) rotate(calc(var(--r, 18deg) + 78deg)) scaleX(0.82);
}

.crack {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--len);
  height: 1px;
  transform-origin: 0 50%;
  transform: rotate(var(--angle)) translateX(9%);
  background: linear-gradient(90deg, rgba(244, 254, 255, 0.86), rgba(244, 254, 255, 0.44) 42%, transparent);
  opacity: var(--alpha);
  filter: drop-shadow(0 0 2px rgba(214, 248, 255, 0.68));
}

.crack::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 0;
  width: calc(var(--len) * 0.38);
  height: 1px;
  transform: rotate(var(--branch));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(244, 254, 255, 0.58), transparent);
}

.avatar-ring {
  position: absolute;
  inset: -10px;
  z-index: 3;
  border-radius: inherit;
  border: 1px dashed rgba(108, 255, 127, 0.65);
  animation: rotate 18s linear infinite;
}

.live-badge {
  position: absolute;
  right: -2px;
  bottom: 8px;
  z-index: 5;
  display: none;
  padding: 4px 7px;
  border: 1px solid rgba(0, 0, 0, 0.82);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #ff1f1f, #ff2f92);
  box-shadow: 0 0 20px rgba(255, 31, 31, 0.68);
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08rem;
}

.avatar-frame.is-live img {
  border-color: rgba(255, 34, 34, 0.88);
  box-shadow:
    0 0 0 9px rgba(255, 34, 34, 0.12),
    0 0 26px rgba(255, 34, 34, 0.78),
    0 0 58px rgba(255, 47, 146, 0.56);
}

.avatar-frame.is-live .avatar-ring {
  border-color: rgba(255, 34, 34, 0.95);
  box-shadow: 0 0 26px rgba(255, 34, 34, 0.62);
  animation: rotate 8s linear infinite, avatar-live-pulse 1.15s ease-in-out infinite;
}

.avatar-frame.is-live .live-badge {
  display: inline-flex;
}

.avatar-frame.is-glitching::after {
  animation: avatar-glitch-wipe 760ms steps(2, end) forwards;
}

.avatar-frame.is-glitching img {
  animation: avatar-image-glitch 760ms steps(2, end) forwards;
}

.avatar-frame.is-glitching .bullet-layer {
  animation: bullet-layer-clean 760ms ease forwards;
}

.avatar-frame.is-firing img {
  animation: avatar-fire-kick 260ms ease-out;
}

.live-audience[hidden] {
  display: none;
}

.live-audience {
  position: relative;
  display: none;
  flex: 0 1 280px;
  min-width: 210px;
  max-width: 300px;
  padding: 11px;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(108, 255, 127, 0.16), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(3, 6, 10, 0.82);
  border: 1px solid rgba(108, 255, 127, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 18px 42px rgba(0, 0, 0, 0.24),
    0 0 34px rgba(108, 255, 127, 0.12);
}

body.is-live .live-audience:not([hidden]) {
  display: block;
}

.live-audience::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green), var(--cyan), var(--pink));
  box-shadow: 0 0 22px rgba(108, 255, 127, 0.58);
}

.live-audience-total {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 10px;
  padding: 3px 3px 9px 9px;
}

.live-audience-total span,
.live-audience-total small {
  color: rgba(216, 231, 235, 0.72);
  font-size: 0.78rem;
  line-height: 1;
}

.live-audience-total span {
  font-family: "Orbitron", sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.live-audience-total strong {
  grid-row: span 2;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.38rem, 6cqi, 2.1rem);
  line-height: 0.9;
  text-shadow: 0 0 18px rgba(108, 255, 127, 0.48);
}

.live-platform-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.live-platform {
  --platform: var(--cyan);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 9px;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--platform) 18%, transparent), transparent 64%),
    rgba(3, 6, 10, 0.72);
  border: 1px solid color-mix(in srgb, var(--platform) 42%, rgba(255, 255, 255, 0.08));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.live-platform:hover,
.live-platform:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--platform) 78%, white 10%);
  box-shadow: 0 0 24px color-mix(in srgb, var(--platform) 24%, transparent);
  outline: none;
}

.live-platform.twitch {
  --platform: #9146ff;
}

.live-platform.youtube {
  --platform: #ff3030;
}

.live-platform.kick {
  --platform: #53fc18;
}

.live-platform-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--platform);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--platform) 18%, transparent),
    0 0 16px color-mix(in srgb, var(--platform) 72%, transparent);
}

.live-platform-name {
  min-width: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
}

.live-platform-viewers {
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.live-audience-updated {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  padding-left: 9px;
  color: rgba(216, 231, 235, 0.58);
  font-size: 0.72rem;
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.85rem, 14.5cqi, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.24);
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #ffffff 36%, var(--pink) 72%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
}

.intro {
  max-width: 590px;
  margin: 24px 0 28px;
  color: #d8e7eb;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.48;
}

.press-gate {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(100%, 520px);
  min-height: 76px;
  padding: 12px 14px;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 209, 102, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(0, 240, 255, 0.2), transparent 24%),
    rgba(3, 6, 10, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.28);
  box-shadow: 0 0 34px rgba(0, 240, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.press-gate::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.86);
}

.press-gate::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-16deg);
  animation: press-scan 3.6s ease-in-out infinite;
}

.press-gate:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 47, 146, 0.7);
  box-shadow:
    0 0 28px rgba(255, 47, 146, 0.2),
    0 0 54px rgba(0, 240, 255, 0.16);
}

.press-gate-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: #061008;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.72), transparent 25%),
    linear-gradient(135deg, var(--cyan), var(--green) 58%, var(--amber));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.36);
  clip-path: polygon(12% 0, 100% 0, 100% 78%, 82% 100%, 0 100%, 0 18%);
}

.press-gate-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(6, 16, 8, 0.3);
  opacity: 0.62;
}

.media-mark-letter {
  position: relative;
  z-index: 1;
  font-family: "Orbitron", sans-serif;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.media-mark-camera {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  width: 16px;
  height: 16px;
  fill: #061008;
  opacity: 0.88;
}

.press-gate strong,
.press-gate small {
  position: relative;
  z-index: 1;
  display: block;
}

.press-gate strong {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.press-gate small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.2;
}

.link-panel {
  position: relative;
  min-width: 0;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 36%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
}

.link-panel::before,
.link-panel::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  pointer-events: none;
}

.link-panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
}

.link-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
}

.link-card,
.donate {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 12px;
  padding: 13px;
  color: var(--text);
  text-decoration: none;
  background: rgba(3, 6, 10, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), transparent 62%);
  opacity: 0.1;
  transition: opacity 180ms ease;
}

.link-card:hover,
.link-card:focus-visible,
.donate:hover,
.donate:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent, var(--green)) 72%, white 12%);
  outline: none;
}

.link-card:hover::before,
.link-card:focus-visible::before {
  opacity: 0.24;
}

.icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #05070a;
  background: var(--accent);
  clip-path: polygon(12% 0, 100% 0, 100% 78%, 82% 100%, 0 100%, 0 18%);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.link-card span:last-child {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.link-card strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.link-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.2;
}

.twitch { --accent: var(--violet); }
.discord { --accent: var(--discord); }
.youtube { --accent: #ff2b2b; }
.instagram { --accent: var(--pink); }
.tiktok { --accent: var(--cyan); }
.contact { --accent: var(--amber); }

.donate {
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  margin-bottom: 0;
  color: var(--green);
  background:
    linear-gradient(90deg, rgba(108, 255, 127, 0.12), rgba(0, 240, 255, 0.16), rgba(108, 255, 127, 0.12)),
    rgba(3, 24, 18, 0.72);
  background-size: 220% 100%;
  border-color: rgba(0, 255, 150, 0.64);
  border-radius: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(108, 255, 127, 0.5);
  box-shadow:
    0 0 0 1px rgba(108, 255, 127, 0.16) inset,
    0 0 18px rgba(108, 255, 127, 0.18),
    0 0 44px rgba(0, 255, 150, 0.12);
  animation: donate-flow 5s linear infinite;
}

.donate::before,
.donate::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.donate::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(108, 255, 127, 0.24), transparent);
  mix-blend-mode: screen;
  opacity: 0.34;
  transform: translateX(-115%) skewX(-18deg);
  animation: donate-scan 3.6s ease-in-out infinite;
}

.donate::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%, rgba(0, 0, 0, 0.22));
  opacity: 0.76;
}

.donate span {
  position: relative;
  z-index: 1;
}

.donate-bolt {
  color: #ff7f2a;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-shadow: 0 0 14px rgba(255, 127, 42, 0.64);
  transform: rotate(14deg);
}

.donate:hover,
.donate:focus-visible {
  box-shadow:
    0 0 0 1px rgba(108, 255, 127, 0.22) inset,
    0 0 28px rgba(108, 255, 127, 0.28),
    0 0 62px rgba(0, 255, 150, 0.18);
}

footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: -18px auto 18px;
  color: rgba(216, 231, 235, 0.55);
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-brand-mark,
.press-brand-mark {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(0, 240, 255, 0.32));
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-brand-mark {
  width: 24px;
  height: 24px;
  opacity: 0.72;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  color: rgba(235, 252, 255, 0.86);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.28);
}

.footer-brand:hover .footer-brand-mark,
.footer-brand:focus-visible .footer-brand-mark {
  opacity: 1;
  filter: drop-shadow(0 0 9px rgba(0, 240, 255, 0.55));
  transform: translateY(-1px);
}

.consent-banner[hidden],
.privacy-choice-trigger[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 18;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: auto;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 240, 255, 0.08), transparent 48%),
    rgba(3, 6, 10, 0.97);
  border: 1px solid rgba(0, 240, 255, 0.48);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 18px 48px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(0, 240, 255, 0.12);
}

.consent-copy {
  min-width: 0;
}

.consent-copy strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.consent-copy p {
  margin: 5px 0 0;
  color: rgba(216, 231, 235, 0.78);
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.consent-action,
.privacy-choice-trigger {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--text);
  font: 700 0.72rem/1 "Orbitron", sans-serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  background: rgba(3, 6, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.consent-action.primary {
  color: #031008;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(108, 255, 127, 0.24);
}

.consent-action:hover,
.consent-action:focus-visible,
.privacy-choice-trigger:hover,
.privacy-choice-trigger:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.22);
  outline: 2px solid transparent;
}

.privacy-choice-trigger {
  position: fixed;
  z-index: 18;
  left: max(12px, env(safe-area-inset-left));
  bottom: max(12px, env(safe-area-inset-bottom));
  min-height: 34px;
  padding: 7px 10px;
  color: rgba(216, 231, 235, 0.78);
  font-size: 0.62rem;
  background: rgba(3, 6, 10, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
}

.no-script-panel {
  position: relative;
  z-index: 6;
  width: min(100% - 28px, 720px);
  margin: 14px auto 0;
  border: 1px solid rgba(0, 240, 255, 0.34);
  background: rgba(5, 12, 22, 0.84);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.12);
  color: rgba(230, 252, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 10px 14px;
  text-align: center;
}

.press-page {
  min-height: 100vh;
}

.press-shell {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.press-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.press-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(3, 6, 10, 0.74);
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.press-nav a:hover,
.press-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 47, 146, 0.7);
  box-shadow: 0 0 24px rgba(255, 47, 146, 0.18);
}

.press-nav .press-brand {
  gap: 8px;
  padding-left: 9px;
}

.press-brand-mark {
  width: 26px;
  height: 26px;
  opacity: 0.86;
}

.press-brand:hover .press-brand-mark,
.press-brand:focus-visible .press-brand-mark {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.68));
  transform: scale(1.04);
}

.press-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.press-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 12px 18px;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(0, 240, 255, 0.16), transparent 42%),
    rgba(3, 6, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.press-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
}

.press-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background:
    linear-gradient(90deg, transparent 46%, rgba(0, 240, 255, 0.5) 48%, rgba(0, 240, 255, 0.5) 52%, transparent 54%),
    linear-gradient(transparent 46%, rgba(0, 240, 255, 0.5) 48%, rgba(0, 240, 255, 0.5) 52%, transparent 54%);
  opacity: 0.52;
}

.press-card.primary {
  grid-column: span 2;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(108, 255, 127, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(0, 240, 255, 0.22), rgba(255, 47, 146, 0.08)),
    rgba(3, 6, 10, 0.82);
}

.press-thumb {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.press-card.primary .press-thumb {
  aspect-ratio: 21 / 10;
}

.press-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.62);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(0, 240, 255, 0.15);
}

.press-type {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 4px 8px;
  color: #061008;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  font-family: "Orbitron", sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.press-card strong,
.press-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.press-card strong {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.press-card small {
  color: rgba(216, 231, 235, 0.78);
  font-size: 1rem;
  line-height: 1.35;
}

.press-note {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 209, 102, 0.3);
  background: rgba(3, 6, 10, 0.7);
  color: rgba(216, 231, 235, 0.82);
}

.press-note strong {
  display: block;
  color: var(--amber);
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.press-note p {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.45;
}

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

@keyframes press-scan {
  0%,
  55% {
    left: -42%;
  }

  100% {
    left: 115%;
  }
}

@keyframes donate-flow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 240% 50%;
  }
}

@keyframes donate-pulse {
  0%,
  100% {
    border-color: rgba(108, 255, 127, 0.72);
  }

  50% {
    border-color: rgba(0, 240, 255, 0.92);
  }
}

@keyframes donate-scan {
  0%,
  42% {
    transform: translateX(-110%) skewX(-18deg);
  }

  78%,
  100% {
    transform: translateX(115%) skewX(-18deg);
  }
}

@keyframes cursor-danger-pulse {
  0%,
  100% {
    transform: scale(1.42);
  }

  50% {
    transform: scale(1.72);
  }
}

@keyframes cursor-shot {
  0% {
    transform: scale(1.72);
    box-shadow:
      0 0 18px rgba(255, 34, 34, 0.9),
      0 0 44px rgba(255, 47, 47, 0.7),
      inset 0 0 18px rgba(255, 255, 255, 0.34);
  }

  55% {
    transform: scale(2.22);
    opacity: 0.95;
  }

  100% {
    transform: scale(1.42);
  }
}

@keyframes cursor-core-shot {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 12px rgba(255, 36, 36, 0.9);
  }

  35% {
    transform: translate(-50%, -50%) scale(2.6);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.95);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes avatar-live-pulse {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

@keyframes avatar-fire-kick {
  0%,
  100% {
    filter: none;
    transform: none;
  }

  35% {
    filter: brightness(1.28) contrast(1.18);
    transform: scale(1.012);
  }
}

@keyframes bullet-impact {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25) rotate(-12deg);
    filter: blur(2px);
  }

  62% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18) rotate(4deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes avatar-glitch-wipe {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }

  12% {
    opacity: 0.95;
    transform: translateX(-8px);
  }

  28% {
    opacity: 0.62;
    transform: translateX(10px);
  }

  44% {
    opacity: 0.88;
    transform: translateX(-4px);
  }

  62% {
    opacity: 0.52;
    transform: translateX(6px);
  }
}

@keyframes avatar-image-glitch {
  0%,
  100% {
    filter: none;
    transform: none;
  }

  18% {
    filter: hue-rotate(38deg) contrast(1.35) saturate(1.5);
    transform: translateX(2px);
  }

  42% {
    filter: hue-rotate(-42deg) contrast(1.6) saturate(1.2);
    transform: translateX(-2px);
  }

  68% {
    filter: brightness(1.35) contrast(1.25);
    transform: translateY(1px);
  }
}

@keyframes bullet-layer-clean {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 28px;
  }

  .identity {
    padding: 16px 0 8px;
  }

  .identity::before {
    left: -8px;
    top: calc(clamp(132px, 17vw, 188px) + 40px);
    height: calc(100% - clamp(132px, 17vw, 188px) - 50px);
  }

  .avatar-live-row {
    gap: 14px;
    margin-bottom: 20px;
  }

  .live-audience {
    flex-basis: min(300px, 48vw);
    min-width: 210px;
  }

  .intro {
    margin: 18px 0 20px;
  }

  .link-panel {
    max-width: 680px;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card.primary {
    grid-column: auto;
  }

  footer {
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 22px, 1120px);
    padding-top: 20px;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.1rem;
    line-height: 1.45;
  }

  .identity::before {
    left: -7px;
    top: calc(clamp(132px, 17vw, 188px) + 38px);
    height: calc(100% - clamp(132px, 17vw, 188px) - 48px);
  }

  .avatar-live-row {
    gap: 12px;
    align-items: flex-start;
  }

  .live-audience {
    flex: 1 1 0;
    min-width: 0;
    padding: 9px;
  }

  .live-audience-total {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 2px 2px 8px 8px;
  }

  .live-audience-total strong {
    grid-row: auto;
    font-size: 1.28rem;
  }

  .live-platform {
    grid-template-columns: auto 1fr;
    gap: 7px;
    min-height: 40px;
    padding: 7px 8px;
  }

  .live-platform-viewers {
    grid-column: 2;
    font-size: 0.82rem;
  }

  .live-platform-name {
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(2.35rem, 14.5cqi, 3.35rem);
  }

  .link-panel {
    padding: 10px;
  }

  .press-shell {
    width: min(100% - 22px, 1120px);
    padding-top: 20px;
  }

  .press-nav {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .press-nav a {
    justify-content: flex-start;
  }

  footer {
    margin-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .press-card,
  .press-card.primary {
    min-height: 190px;
    padding: 15px;
  }

  .link-card {
    min-height: 70px;
    gap: 11px;
    padding: 11px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }

  .link-card small {
    font-size: 0.9rem;
  }

  .press-gate {
    min-height: 70px;
  }

  .press-gate-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .media-mark-letter {
    font-size: 1.18rem;
  }

  .media-mark-camera {
    width: 14px;
    height: 14px;
  }

  .press-gate strong {
    font-size: 0.82rem;
  }

  .press-gate small {
    font-size: 0.88rem;
  }
}

@media (max-width: 520px) {
  .consent-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 13px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-action {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 370px) {
  .shell {
    width: min(100% - 16px, 1120px);
  }

  h1 {
    font-size: clamp(2.18rem, 15cqi, 3rem);
  }

  .avatar-frame {
    width: 118px;
  }

  .link-card {
    gap: 9px;
  }

  .icon {
    width: 38px;
    height: 38px;
  }

  .icon svg {
    width: 22px;
    height: 22px;
  }

  .donate {
    font-size: 0.76rem;
    letter-spacing: 0.08rem;
  }
}

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

@media (pointer: coarse) {
  a,
  button {
    cursor: pointer;
  }

  .cyber-cursor {
    display: none;
  }
}
