:root {
  color-scheme: dark;
  --bg: #020b07;
  --green: #18ff9f;
  --cyan: #20f7ff;
  --gold: #ffd84d;
  --pink: #ff4df2;
  --text: #f6ffe8;
  --muted: #aee9cf;
  --poster-w: min(94vw, 980px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: "Microsoft YaHei UI", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 216, 77, .22), transparent 21rem),
    radial-gradient(circle at 86% 28%, rgba(32, 247, 255, .16), transparent 25rem),
    radial-gradient(circle at 50% 86%, rgba(255, 77, 242, .15), transparent 27rem),
    linear-gradient(180deg, #020c07 0%, #061c10 42%, #020705 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .08;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.45) 0 1px, transparent 1px 5px),
    repeating-radial-gradient(circle at 40% 30%, rgba(255,255,255,.8) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #061207;
  background: rgba(255, 216, 77, .92);
}

#matrix {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  opacity: .38;
}

.ambient {
  position: fixed;
  inset: -20%;
  z-index: -3;
  pointer-events: none;
  background:
    conic-gradient(from 120deg at 20% 30%, transparent, rgba(24,255,159,.16), transparent 28%),
    conic-gradient(from -60deg at 82% 62%, transparent, rgba(255,77,242,.14), transparent 30%);
  filter: blur(34px);
  animation: ambientSpin 18s linear infinite;
}

.cursor-glow {
  position: fixed;
  left: var(--mx, 50%);
  top: var(--my, 28%);
  z-index: -2;
  width: 420px;
  aspect-ratio: 1;
  translate: -50% -50%;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,247,255,.18), rgba(24,255,159,.08) 38%, transparent 68%);
  filter: blur(10px);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(32, 247, 255, .35);
  border-radius: 999px;
  background: rgba(2, 15, 9, .62);
  box-shadow: 0 0 26px rgba(24,255,159,.25), inset 0 0 22px rgba(32,247,255,.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  text-shadow: 0 0 14px rgba(255,216,77,.65);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,216,77,.7);
  box-shadow: 0 0 22px rgba(255,216,77,.55);
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
  transition: color .2s, text-shadow .2s;
}

nav a:hover {
  color: var(--green);
  text-shadow: 0 0 14px var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-mini,
.contract {
  border: 1px solid rgba(255,216,77,.64);
  color: #241300;
  font-weight: 900;
  background: linear-gradient(135deg, #fff8a8, #ffd84d 42%, #ff970f);
  box-shadow: 0 0 22px rgba(255,216,77,.34);
}

.asset-mini,
.game-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.asset-mini {
  border: 1px solid rgba(255, 126, 255, .62);
  color: #fff7ff;
  background: linear-gradient(135deg, #ff7bff, #9b5cff 48%, #4b35d8);
  box-shadow: 0 0 22px rgba(255,77,242,.28), inset 0 0 12px rgba(255,255,255,.18);
}

.game-mini {
  border: 1px solid rgba(24, 255, 159, .62);
  color: #031108;
  background: linear-gradient(135deg, #caff75, var(--green) 48%, #20f7ff);
  box-shadow: 0 0 22px rgba(24,255,159,.28), inset 0 0 12px rgba(255,255,255,.18);
}

.asset-mini:hover,
.game-mini:hover {
  transform: translateY(-1px);
  filter: saturate(1.12) brightness(1.05);
}

.asset-mini:hover {
  box-shadow: 0 0 30px rgba(255,77,242,.48), 0 0 36px rgba(155,92,255,.34), inset 0 0 16px rgba(255,255,255,.24);
}

.game-mini:hover {
  box-shadow: 0 0 30px rgba(24,255,159,.48), 0 0 36px rgba(32,247,255,.28), inset 0 0 16px rgba(255,255,255,.24);
}

.copy-mini {
  padding: 10px 16px;
  border-radius: 999px;
}

.hero-slider {
  width: var(--poster-w);
  margin: 24px auto 0;
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 247, 255, .36);
  border-radius: clamp(18px, 2.6vw, 30px);
  background: rgba(2, 15, 9, .7);
  box-shadow:
    0 0 28px rgba(24,255,159,.26),
    0 0 70px rgba(255,216,77,.12),
    inset 0 0 24px rgba(32,247,255,.13);
}

.slider-viewport::before,
.slider-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.slider-viewport::before {
  background:
    linear-gradient(90deg, rgba(2, 11, 7, .48), transparent 16% 84%, rgba(2, 11, 7, .48)),
    repeating-linear-gradient(180deg, rgba(255,255,255,.06) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
}

.slider-viewport::after {
  border: 1px solid rgba(24,255,159,.45);
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(24,255,159,.26);
}

.slider-track {
  position: relative;
  aspect-ratio: 3 / 1;
}

.slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .8s ease, transform 5s ease;
  pointer-events: none;
}

.slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,216,77,.55);
  border-radius: 50%;
  color: #fff7a8;
  background: rgba(2, 15, 9, .56);
  box-shadow: 0 0 20px rgba(255,216,77,.18);
  font-size: 36px;
  line-height: 1;
  translate: 0 -50%;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.slider-arrow:hover {
  background: rgba(255,216,77,.2);
  box-shadow: 0 0 28px rgba(255,216,77,.38);
  transform: scale(1.08);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 5;
  display: flex;
  gap: 9px;
  translate: -50% 0;
}

.slider-dots button {
  width: 30px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(24,255,159,.5);
  border-radius: 999px;
  background: rgba(2, 15, 9, .58);
  box-shadow: 0 0 12px rgba(24,255,159,.18);
  transition: width .2s ease, background .2s ease, box-shadow .2s ease;
}

.slider-dots button.is-active {
  width: 48px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(24,255,159,.72);
}

.second-site-gate {
  width: var(--poster-w);
  margin: 22px auto 0;
}

.second-site-link {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: clamp(52px, 6.3vw, 73px);
  overflow: hidden;
  padding: clamp(11px, 2vw, 20px);
  border: 2px solid rgba(255, 247, 143, .9);
  border-radius: clamp(18px, 2.6vw, 30px);
  color: #241300;
  text-decoration: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,.78), transparent 12rem),
    radial-gradient(circle at 84% 46%, rgba(255,151,15,.5), transparent 14rem),
    linear-gradient(135deg, #fff27a 0%, #ffd83f 42%, #ff9d16 100%);
  box-shadow:
    0 0 0 1px rgba(255,216,77,.38),
    0 0 34px rgba(255,216,77,.62),
    0 0 70px rgba(255,151,15,.26),
    inset 0 0 22px rgba(255,255,255,.35);
  transform: translateZ(0);
  animation: gatePulse 2.4s ease-in-out infinite;
}

.second-site-link::before,
.second-site-link::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.second-site-link::before {
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(91,50,0,.14) 0 10px, transparent 10px 20px),
    linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
  transform: translateX(-120%);
  mix-blend-mode: screen;
  animation: gateShine 2.8s ease-in-out infinite;
}

.second-site-link::after {
  inset: 8px;
  border: 1px solid rgba(70, 35, 0, .34);
  border-radius: calc(clamp(18px, 2.6vw, 30px) - 8px);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, .32);
}

.gate-kicker,
.gate-arrow {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff7ad;
  background: rgba(35, 18, 0, .78);
  box-shadow: 0 0 16px rgba(68, 35, 0, .25);
  font-size: clamp(10px, 1.25vw, 12px);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.second-site-link strong {
  position: relative;
  z-index: 1;
  color: #2c1700;
  font-size: clamp(20px, 3.8vw, 40px);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255,255,255,.75),
    0 0 18px rgba(255,255,255,.45);
}

.second-site-link:hover {
  filter: saturate(1.15) brightness(1.06);
}

.second-site-link:hover .gate-arrow {
  transform: translateX(4px);
}

.poster-stage {
  display: grid;
  place-items: center;
  padding: 24px 0 58px;
}

.poster {
  position: relative;
  width: var(--poster-w);
  overflow: hidden;
  border-radius: clamp(18px, 3vw, 34px);
  isolation: isolate;
  background: #031108;
  box-shadow:
    0 0 0 1px rgba(32,247,255,.35),
    0 0 36px rgba(24,255,159,.38),
    0 0 100px rgba(255,216,77,.18);
  transform-style: preserve-3d;
}

.poster::before,
.poster::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 7;
}

.poster::before {
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
  mix-blend-mode: screen;
}

.poster::after {
  inset: 10px;
  border: 2px solid rgba(24,255,159,.72);
  border-radius: clamp(14px, 2.4vw, 28px);
  box-shadow: inset 0 0 20px rgba(24,255,159,.36), 0 0 22px rgba(24,255,159,.5);
}

.poster-light {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 16%, rgba(255,216,77,.22), transparent 25%),
    radial-gradient(circle at 51% 52%, rgba(24,255,159,.15), transparent 18%),
    radial-gradient(circle at 52% 67%, rgba(255,77,242,.18), transparent 18%);
  mix-blend-mode: screen;
  animation: lightPulse 3.6s ease-in-out infinite;
}

.poster-border {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--green), transparent 16% 84%, var(--green)),
    linear-gradient(180deg, var(--green), transparent 10% 90%, var(--green));
  opacity: .14;
  mix-blend-mode: screen;
  animation: borderFlicker 1.8s steps(2, end) infinite;
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, transparent, rgba(24,255,159,.12), transparent);
  background-size: auto, 100% 34%;
  animation: scanMove 4.2s linear infinite;
  mix-blend-mode: overlay;
}

.slice {
  position: relative;
  line-height: 0;
}

.slice + .slice {
  margin-top: -2px;
}

.slice img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.neon-hotspot,
.portal-ring,
.danger-flash,
.rocket-trail {
  position: absolute;
  z-index: 8;
  pointer-events: none;
}

.title-pulse {
  left: 21%;
  top: 6%;
  width: 58%;
  height: 18%;
  border-radius: 22px;
  box-shadow: 0 0 36px rgba(255,216,77,.65), inset 0 0 30px rgba(255,216,77,.22);
  animation: titlePulse 2.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

.portal-ring {
  left: 25%;
  top: 9%;
  width: 50%;
  aspect-ratio: 2.25;
  border-radius: 38px;
  border: 2px solid rgba(24,255,159,.55);
  box-shadow:
    0 0 26px rgba(24,255,159,.58),
    0 0 42px rgba(255,77,242,.42),
    inset 0 0 22px rgba(32,247,255,.42);
  animation: portalThrob 1.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.rocket-trail {
  width: 15%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff8a8, var(--green));
  box-shadow: 0 0 18px var(--gold);
  transform-origin: right center;
  animation: trailDash 1.2s ease-in-out infinite;
}

.trail-one {
  left: 9%;
  bottom: 24%;
  rotate: -16deg;
}

.trail-two {
  left: 39%;
  bottom: 17%;
  rotate: 18deg;
  animation-delay: -.45s;
}

.danger-flash {
  left: 27%;
  right: 4%;
  top: 39%;
  height: 16%;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,52,58,.08), rgba(255,216,77,.16), rgba(255,52,58,.08));
  box-shadow: 0 0 28px rgba(255,52,58,.34);
  animation: dangerFlash 1.15s steps(2, end) infinite;
  mix-blend-mode: screen;
}

.text-layer {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.copy-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: transparent;
  background: transparent;
  text-align: center;
  line-height: 1.05;
  user-select: text;
  pointer-events: auto;
  -webkit-text-stroke: 0 transparent;
  text-shadow: none;
  cursor: copy;
  transition: filter .18s ease;
}

.copy-chip:hover,
.copy-chip:focus-visible {
  color: transparent;
  outline: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
  filter: none;
}

.chip-title {
  left: 27.8%;
  top: 3.15%;
  width: 45%;
  height: 6.2%;
  font-size: clamp(38px, 8.7vw, 112px);
  font-weight: 900;
  letter-spacing: .06em;
  border-radius: 22px;
}

.chip-subtitle {
  left: 28.2%;
  top: 10.35%;
  width: 44%;
  height: 2.55%;
  font-size: clamp(18px, 3.9vw, 50px);
  font-weight: 900;
  border-radius: 14px;
}

.chip-equation {
  left: 11.5%;
  top: 19.5%;
  width: 28.5%;
  height: 4.3%;
  font-size: clamp(12px, 2.15vw, 27px);
  font-weight: 900;
  border-radius: 14px;
}

.chip-manifesto {
  left: 10%;
  top: 30.1%;
  width: 80%;
  height: 3.7%;
  font-size: clamp(16px, 3.25vw, 41px);
  font-weight: 900;
  border-radius: 16px;
}

.chip-community {
  left: 39.6%;
  top: 56.1%;
  width: 22.2%;
  height: 2.65%;
  font-size: clamp(15px, 3vw, 38px);
  font-weight: 900;
  border-radius: 12px;
}

.chip-stage-one,
.chip-stage-two,
.chip-stage-three {
  height: 2.2%;
  font-size: clamp(11px, 2vw, 26px);
  font-weight: 900;
  border-radius: 12px;
}

.chip-stage-one {
  left: 16.7%;
  top: 64.5%;
  width: 25%;
}

.chip-stage-two {
  left: 42.2%;
  top: 67.3%;
  width: 25%;
}

.chip-stage-three {
  left: 68%;
  top: 64.1%;
  width: 23.5%;
}

.chip-warning {
  left: 42.5%;
  top: 79.5%;
  width: 48%;
  height: 3.6%;
  font-size: clamp(16px, 3vw, 39px);
  font-weight: 900;
  border-radius: 14px;
}

.chip-ca {
  left: 37.6%;
  top: 93.15%;
  width: 53%;
  height: 2.35%;
  font-size: clamp(10px, 1.72vw, 22px);
  font-weight: 900;
  letter-spacing: .015em;
  border-radius: 10px;
}

.contract-dock {
  display: grid;
  gap: 8px;
  width: var(--poster-w);
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255,216,77,.32);
  border-radius: 22px;
  background: rgba(2, 16, 10, .72);
  box-shadow: 0 0 28px rgba(255,216,77,.18);
  backdrop-filter: blur(14px);
  line-height: 1.2;
}

.contract-dock p {
  margin: 0;
  color: #fff7a2;
  text-align: center;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255,216,77,.8);
}

.contract {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: clamp(10px, 1.8vw, 18px);
  border-radius: 16px;
  text-align: left;
}

.contract span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(12px, 2vw, 20px);
}

.contract em {
  flex: 0 0 auto;
  font-style: normal;
  color: #10200a;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
}

.contract-dock small {
  min-height: 20px;
  color: var(--green);
  text-align: center;
  font-weight: 900;
  text-shadow: 0 0 12px var(--green);
}

.binary-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.binary-stream {
  position: absolute;
  top: -360px;
  display: grid;
  grid-auto-rows: 1.08em;
  justify-items: center;
  width: 1.2em;
  color: rgba(24, 255, 159, .92);
  font-family: "Consolas", "Microsoft YaHei UI", monospace;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-shadow:
    0 0 8px rgba(24,255,159,.95),
    0 0 18px rgba(24,255,159,.45);
  filter: blur(.1px);
  animation: binaryFall linear infinite;
}

.binary-stream span {
  display: block;
}

.telegram-community {
  width: var(--poster-w);
  margin: -16px auto 18px;
  text-align: center;
}

.telegram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: #8fe6ff;
  text-decoration: none;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(47,184,255,.42);
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.telegram-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow: 0 0 16px rgba(47,184,255,.72);
}

.telegram-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: #229ed9;
  box-shadow: 0 0 10px rgba(47,184,255,.34);
  font-size: 14px;
  line-height: 1;
}

footer {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto 36px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@keyframes ambientSpin { to { transform: rotate(360deg); filter: hue-rotate(360deg) blur(34px); } }
@keyframes shine { 0%, 42% { transform: translateX(-120%); } 70%, 100% { transform: translateX(120%); } }
@keyframes lightPulse { 50% { opacity: .55; filter: saturate(1.6); } }
@keyframes borderFlicker { 0%, 100% { opacity: .12; } 50% { opacity: .24; } }
@keyframes scanMove { to { background-position: 0 0, 0 140%; } }
@keyframes titlePulse { 50% { opacity: .42; transform: scale(1.02); } }
@keyframes portalThrob { 50% { transform: scale(1.045); opacity: .56; } }
@keyframes trailDash { 50% { opacity: .3; transform: translateX(-18px) scaleX(.7); } }
@keyframes dangerFlash { 50% { opacity: .25; } }
@keyframes gatePulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 1px rgba(255,216,77,.38), 0 0 34px rgba(255,216,77,.62), 0 0 70px rgba(255,151,15,.26), inset 0 0 22px rgba(255,255,255,.35); }
  50% { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,247,143,.78), 0 0 48px rgba(255,216,77,.84), 0 0 96px rgba(255,151,15,.38), inset 0 0 28px rgba(255,255,255,.48); }
}
@keyframes gateShine {
  0%, 38% { transform: translateX(-120%); }
  68%, 100% { transform: translateX(120%); }
}
@keyframes binaryFall {
  from { transform: translate3d(0, -120px, 0); }
  to { transform: translate3d(var(--drift), calc(100vh + 520px), 0); }
}

@media (max-width: 980px) {
  .topbar {
    top: 8px;
    border-radius: 24px;
  }

  nav { display: none; }

}

@media (max-width: 560px) {
  :root { --poster-w: 100vw; }

  .topbar {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: calc(100% - 16px);
    margin-top: 8px;
    padding: 8px 10px;
  }

  .brand span { display: none; }
  .brand {
    grid-column: 1;
    min-width: 44px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    display: contents;
  }

  .quick-links {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
  }

  .game-mini,
  .copy-mini {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }

  .game-mini,
  .asset-mini {
    min-height: auto;
    padding: 0;
    border: 0;
    color: var(--muted);
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(24,255,159,.34);
    white-space: nowrap;
  }

  .game-mini:hover,
  .asset-mini:hover {
    transform: none;
    color: var(--gold);
    filter: none;
    box-shadow: none;
  }

  .copy-mini {
    grid-column: 3 / 4;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    padding-inline: 16px;
  }

  .game-mini {
    justify-self: auto;
  }

  .asset-mini {
    justify-self: auto;
  }

  .hero-slider { width: calc(100% - 16px); margin-top: 16px; }
  .second-site-gate { width: calc(100% - 16px); margin-top: 16px; }
  .second-site-link {
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 52px;
    padding: 10px 12px;
    text-align: left;
  }
  .gate-kicker { display: none; }
  .second-site-link strong {
    font-size: clamp(18px, 5.1vw, 24px);
    text-align: left;
    white-space: nowrap;
  }
  .gate-arrow {
    padding: 6px 8px;
    font-size: 10px;
    white-space: nowrap;
  }
  .slider-track { aspect-ratio: 2.35 / 1; }
  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 28px;
  }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-dots { bottom: 8px; }
  .slider-dots button { width: 20px; height: 6px; }
  .slider-dots button.is-active { width: 34px; }
  .poster-stage { padding-top: 18px; }
  .poster { border-radius: 0; }
  .poster::after { inset: 6px; }
  .contract em { display: none; }
  .telegram-community {
    width: calc(100% - 16px);
    margin-top: -14px;
  }
  .telegram-link {
    font-size: 15px;
  }
  .telegram-icon {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
}

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