@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #070a17;
  --bg-soft: #0c1022;
  --panel: rgba(15, 20, 42, 0.82);
  --panel-solid: #10152c;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f7f8ff;
  --muted: #a7aec8;
  --cyan: #36dcff;
  --blue: #5978ff;
  --violet: #a879ff;
  --pink: #ff70bc;
  --max: 1180px;
  --radius: 28px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 0%, rgba(34, 105, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body.cart-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  color: #070a17;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 50%;
  width: min(calc(100% - 36px), var(--max));
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  transition: background .25s ease, border-color .25s ease, height .25s ease;
}
.site-header.scrolled, .compact-header {
  top: 12px;
  height: 66px;
  padding: 0 14px 0 18px;
  background: rgba(7, 10, 23, 0.83);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 700 20px/1 'Space Grotesk', sans-serif;
  letter-spacing: -.04em;
}
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px 4px 11px 4px;
  background: linear-gradient(145deg, var(--cyan), var(--blue) 58%, var(--violet));
  color: #060918;
  box-shadow: 0 0 32px rgba(54, 220, 255, .22);
}
.main-nav { display: flex; gap: 34px; }
.main-nav a, .site-footer nav a, .footer-link-button {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease;
}
.main-nav a:hover, .site-footer nav a:hover, .footer-link-button:hover { color: var(--text); }
.header-tools { display: flex; align-items: center; gap: 12px; }
.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.language-switcher button {
  min-width: 34px;
  height: 30px;
  padding: 0 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-switcher button:hover { color: var(--text); }
.language-switcher button.active {
  background: linear-gradient(120deg, var(--cyan), #7188ff);
  color: #07101e;
  box-shadow: 0 5px 18px rgba(54, 190, 255, .2);
}
.cart-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--text);
  cursor: pointer;
}
.cart-count {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 40px;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 130px 0 80px;
}
.hero::after {
  content: '';
  position: absolute;
  right: -45vw;
  bottom: 0;
  left: -45vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.hero-orb-one {
  width: 380px; height: 380px; right: 8%; top: 20%;
  background: rgba(29, 112, 255, .14);
}
.hero-orb-two {
  width: 280px; height: 280px; right: 31%; bottom: 10%;
  background: rgba(187, 78, 255, .12);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #c1c8df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow b { font: inherit; }
.eyebrow span { width: 27px; height: 1px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(3.5rem, 6.8vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.075em;
}
.hero h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, var(--cyan), #74a1ff 50%, var(--violet));
  background-clip: text;
  font-style: normal;
}
.hero-text {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}
.hero-actions, .game-actions, .support-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(120deg, var(--cyan), #5b8bff);
  color: #07101e;
  box-shadow: 0 12px 34px rgba(54, 190, 255, .2);
}
.button-primary:hover { box-shadow: 0 16px 42px rgba(54, 190, 255, .31); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.04); color: var(--text); }
.button-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }
.button-small { min-height: 40px; padding: 0 16px; font-size: 13px; }
.button-full { width: 100%; }

.hero-art { position: relative; z-index: 1; height: 600px; }
.floating-cover {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background: #11152a;
  box-shadow: 0 35px 90px rgba(0,0,0,.5);
}
.floating-cover::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.07); border-radius: inherit; }
.floating-cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-gremlins { width: 300px; aspect-ratio: .675; right: 35%; top: 48px; transform: rotate(-7deg); }
.cover-violet { width: 300px; aspect-ratio: .77; right: 0; top: 120px; transform: rotate(7deg); }
.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 32%;
  bottom: 74px;
  display: grid;
  width: 100px;
  height: 100px;
  place-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(9, 13, 29, .82);
  backdrop-filter: blur(15px);
  color: var(--cyan);
  font: 700 25px/1 'Space Grotesk', sans-serif;
  text-align: center;
}
.hero-stamp small { color: var(--muted); font: 600 10px/1.4 'DM Sans', sans-serif; letter-spacing: .14em; text-transform: uppercase; }

.section { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-heading h2, .about h2, .support h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.065em;
}
.section-heading > p { max-width: 360px; margin: 0 0 6px; color: var(--muted); line-height: 1.65; }
.game-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 580px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}
.game-card-violet { grid-template-columns: .92fr 1.08fr; }
.game-card-violet .game-visual { order: 2; }
.game-visual { position: relative; min-height: 520px; overflow: hidden; }
.game-backdrop { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; transform: scale(1.01); }
.game-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, var(--panel-solid)), linear-gradient(0deg, rgba(5,7,18,.45), transparent 55%);
}
.game-card-violet .game-visual::after { background: linear-gradient(-90deg, transparent 40%, var(--panel-solid)), linear-gradient(0deg, rgba(5,7,18,.42), transparent 55%); }
.game-poster-wrap {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 7%;
  width: min(32%, 190px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.58);
  transform: rotate(2deg);
}
.game-poster-wrap img { width: 100%; height: auto; }
.violet-poster { right: auto; left: 7%; transform: rotate(-2deg); }
.game-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 70px); }
.game-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.game-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd1e6;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.game-content h3 { margin: 24px 0 16px; font-size: clamp(2rem, 3.4vw, 3.35rem); line-height: 1; letter-spacing: -.055em; }
.game-content > p { margin: 0; color: var(--muted); line-height: 1.72; }
.feature-list { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; color: #d9dded; font-size: 14px; }
.feature-list li::before { content: '✦'; margin-right: 10px; color: var(--cyan); }
.game-card-violet .feature-list li::before { color: var(--pink); }
.violet-button { background: linear-gradient(120deg, #ff88c4, #9e7cff); box-shadow: 0 12px 34px rgba(183, 100, 255, .2); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: #dce4ff; font-weight: 700; }
.text-link span { color: var(--cyan); }

.media-heading { max-width: 760px; margin: 110px 0 38px; }
.media-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.065em;
}
.media-heading > p:last-child { max-width: 600px; margin: 20px 0 0; color: var(--muted); line-height: 1.7; }
.media-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.media-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18,25,53,.9), rgba(9,12,27,.9));
  box-shadow: 0 28px 80px rgba(0,0,0,.2);
}
.media-card-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 7px 5px 17px; }
.media-card-title span:not(.steam-source) { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.media-card-title h3 { margin: 5px 0 0; font-size: clamp(1.3rem, 2vw, 1.75rem); letter-spacing: -.04em; }
.steam-source {
  flex-shrink: 0;
  padding: 7px 10px;
  border: 1px solid rgba(54,220,255,.24);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.media-card-violet .steam-source { border-color: rgba(255,112,188,.25); color: var(--pink); }
.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #02030a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.video-shell video { width: 100%; height: 100%; object-fit: cover; }
.gallery-label { margin: 20px 4px 10px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.screenshot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.screenshot-grid button {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: #050714;
  cursor: zoom-in;
}
.screenshot-grid button::after {
  content: '+';
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7,10,23,.72);
  color: white;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
}
.screenshot-grid button:hover::after { opacity: 1; transform: translateY(0); }
.screenshot-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, opacity .3s ease; }
.screenshot-grid button:hover img { transform: scale(1.035); opacity: .82; }

.lightbox {
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 10px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  background: #080b18;
  color: white;
  box-shadow: 0 35px 120px rgba(0,0,0,.7);
}
.lightbox::backdrop { background: rgba(1,2,8,.84); backdrop-filter: blur(10px); }
.lightbox img { width: 100%; max-height: calc(100dvh - 54px); object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; z-index: 2; top: -18px; right: -12px; background: #151a31; }

.about { display: grid; grid-template-columns: 1fr .8fr; gap: 30px; }
.about-card, .about-quote, .support-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20,27,56,.86), rgba(10,13,28,.8));
}
.about-card { padding: clamp(36px, 6vw, 75px); }
.about-card > p:not(.eyebrow) { max-width: 660px; margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.about-quote { position: relative; display: flex; flex-direction: column; justify-content: end; overflow: hidden; min-height: 480px; padding: 52px; }
.about-quote::before { content: ''; position: absolute; width: 300px; height: 300px; right: -80px; top: -70px; border-radius: 50%; background: rgba(130, 85, 255, .19); filter: blur(20px); }
.quote-mark { position: absolute; top: 18px; left: 42px; color: rgba(255,255,255,.08); font: 700 160px/1 serif; }
.about-quote blockquote { position: relative; margin: 0; font: 600 clamp(1.8rem, 3vw, 3rem)/1.14 'Space Grotesk', sans-serif; letter-spacing: -.045em; }
.about-quote p { margin: 25px 0 0; color: var(--cyan); }
.support { padding-top: 0; }
.support-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(34px, 5vw, 65px); }
.support-panel > div:first-child { max-width: 650px; }
.support-panel p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.support-links { min-width: 270px; flex-direction: column; margin-top: 0; }
.contact { padding-top: 0; }
.contact-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px, 6vw, 85px); padding: clamp(34px, 5vw, 65px); border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 12% 12%, rgba(54,220,255,.1), transparent 28rem), linear-gradient(145deg, rgba(20,27,56,.9), rgba(10,13,28,.84)); }
.contact-copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.055em; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.contact-note { display: flex; gap: 10px; margin-top: 28px; color: var(--cyan); font-size: 13px; line-height: 1.5; }
.contact-email-card { display: grid; align-content: center; justify-items: start; gap: 16px; min-height: 240px; padding: clamp(26px, 5vw, 52px); border: 1px solid var(--line); border-radius: 22px; background: rgba(3,6,17,.48); }
.contact-email-label { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-email-address { max-width: 100%; color: var(--cyan); font-size: clamp(1rem, 2.3vw, 1.65rem); font-weight: 800; overflow-wrap: anywhere; }
.contact-email-address:hover { color: #fff; }
.button-community { justify-content: flex-start; gap: 10px; border-color: rgba(255,255,255,.15); color: #fff; }
.button-community > span:first-child { display: inline-grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); }
.button-telegram { background: linear-gradient(135deg, rgba(42,171,238,.24), rgba(42,171,238,.08)); }
.button-telegram:hover { border-color: rgba(42,171,238,.72); box-shadow: 0 14px 36px rgba(42,171,238,.18); }
.button-discord { background: linear-gradient(135deg, rgba(88,101,242,.28), rgba(88,101,242,.08)); }
.button-discord:hover { border-color: rgba(88,101,242,.78); box-shadow: 0 14px 36px rgba(88,101,242,.2); }

.site-footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 42px 0 38px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.site-footer > p { margin: 0; color: var(--muted); font-size: 14px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; }
.site-footer small { grid-column: 1 / -1; color: #6f7896; font-size: 11px; }
.footer-link-button { padding: 0; border: 0; background: none; cursor: pointer; }
.visitor-stats { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.visitor-stats > span { display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); white-space: nowrap; }
.visitor-stats b { color: var(--text); font-variant-numeric: tabular-nums; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #42e69a; box-shadow: 0 0 10px rgba(66,230,154,.75); }

.scrim { position: fixed; z-index: 60; inset: 0; background: rgba(2,4,12,.68); backdrop-filter: blur(6px); }
.cart-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-left: 1px solid var(--line);
  background: #0b0e1e;
  transform: translateX(103%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
  box-shadow: -25px 0 80px rgba(0,0,0,.4);
}
.cart-drawer[aria-hidden="false"] { transform: translateX(0); }
.cart-header { display: flex; align-items: start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font-size: 2rem; }
.icon-button {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255,255,255,.05); color: var(--text); font-size: 25px; cursor: pointer;
}
.cart-items { display: grid; gap: 14px; overflow-y: auto; padding: 22px 2px; }
.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr 28px;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.cart-item img { width: 78px; height: 98px; border-radius: 10px; object-fit: cover; }
.cart-item-copy h3 { margin: 4px 0 6px; font-size: 16px; line-height: 1.15; }
.cart-item-copy p, .cart-item-copy span { margin: 0; color: var(--muted); font-size: 12px; }
.cart-item-copy span { display: block; margin-top: 14px; color: var(--cyan); }
.cart-item .button { grid-column: 1 / -1; min-height: 42px; font-size: 13px; }
.cart-remove { align-self: start; padding: 0; border: 0; background: none; color: var(--muted); font-size: 22px; cursor: pointer; }
.cart-empty { margin: auto; padding: 40px 10px; text-align: center; }
.cart-empty > span { color: var(--cyan); font-size: 36px; }
.cart-empty h3 { margin: 18px 0 8px; font-size: 25px; }
.cart-empty p { max-width: 270px; margin: 0 auto; color: var(--muted); line-height: 1.6; }
.cart-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.cart-footer p { margin: 0 0 15px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.updates-dialog {
  width: min(920px, calc(100% - 30px));
  max-width: none;
  max-height: min(860px, calc(100dvh - 30px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: #0b0e1e;
  color: var(--text);
  box-shadow: 0 35px 120px rgba(0,0,0,.68);
}
.updates-dialog::backdrop { background: rgba(2,4,12,.78); backdrop-filter: blur(9px); }
.updates-shell { display: flex; max-height: min(860px, calc(100dvh - 30px)); flex-direction: column; }
.updates-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 30px 23px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(33,217,255,.08), rgba(185,96,255,.08));
}
.updates-header h2 { margin: 8px 0 0; font-size: clamp(1.75rem, 4vw, 2.7rem); line-height: 1; letter-spacing: -.045em; }
.updates-header h2 em { color: var(--cyan); font-family: inherit; font-size: .55em; font-style: normal; letter-spacing: -.02em; }
.updates-status { margin: 0; padding: 54px 30px; color: var(--muted); text-align: center; }
.updates-list { display: grid; gap: 16px; overflow-y: auto; padding: 22px 30px; }
.update-card {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.update-card-image { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.update-card-content { min-width: 0; padding: 22px 24px; }
.update-card time { color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.update-card h3 { margin: 8px 0 9px; font-size: 1.35rem; letter-spacing: -.025em; }
.update-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.update-card .text-link { font-size: 12px; }
.updates-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 650px) {
  .updates-header, .updates-list, .updates-footer { padding-right: 18px; padding-left: 18px; }
  .updates-header h2 { display: grid; gap: 5px; }
  .update-card { grid-template-columns: 1fr; }
  .update-card-image { height: 155px; min-height: 0; }
  .updates-footer { align-items: flex-start; flex-direction: column; }
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 760px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(15, 20, 42, .95);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
}
.cookie-banner:not([hidden]) { display: flex; }
.cookie-banner strong { font-family: 'Space Grotesk', sans-serif; }
.cookie-banner p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.cookie-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

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

.legal-page { min-height: 100vh; }
.legal-main { width: min(calc(100% - 36px), 820px); margin: 0 auto; padding: 150px 0 90px; }
.legal-main h1 { margin: 0; font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -.07em; }
.legal-updated { color: var(--muted); }
.legal-main section { margin-top: 48px; }
.legal-main section h2 { margin-bottom: 12px; font-size: 1.4rem; letter-spacing: -.03em; }
.legal-main section p { color: var(--muted); line-height: 1.8; }
.legal-main section a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { grid-template-columns: 1fr; }

@media (max-width: 960px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 155px; }
  .hero-art { height: 570px; max-width: 620px; width: 100%; margin: 0 auto; }
  .cover-gremlins { left: 7%; right: auto; }
  .cover-violet { right: 7%; }
  .game-card, .game-card-violet { grid-template-columns: 1fr; }
  .game-card-violet .game-visual { order: 0; }
  .game-visual { min-height: 600px; }
  .game-visual::after, .game-card-violet .game-visual::after { background: linear-gradient(0deg, var(--panel-solid), transparent 52%); }
  .about { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .support-panel { align-items: start; flex-direction: column; }
  .support-links { width: 100%; }
  .contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { width: calc(100% - 24px); }
  .main-nav { display: none; }
  .header-tools { gap: 7px; }
  .language-switcher { gap: 1px; padding: 3px; }
  .language-switcher button { min-width: 29px; height: 28px; padding: 0 5px; font-size: 10px; }
  .cart-button { padding-left: 12px; }
  .cart-button > span:first-child { display: none; }
  .hero, .section, .site-footer { width: calc(100% - 28px); }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 5.2rem); }
  .hero-art { height: 450px; }
  .floating-cover { width: 215px; border-radius: 22px; }
  .cover-gremlins { top: 40px; left: 1%; }
  .cover-violet { top: 90px; right: 1%; }
  .hero-stamp { right: 28%; bottom: 28px; width: 84px; height: 84px; }
  .section { padding: 85px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .game-card { border-radius: 22px; }
  .game-visual { min-height: 450px; }
  .game-content { padding: 32px 24px 38px; }
  .game-poster-wrap { width: 130px; border-radius: 12px; }
  .game-actions .button, .game-actions .text-link { width: 100%; justify-content: center; }
  .about-quote { min-height: 390px; padding: 34px; }
  .media-heading { margin-top: 80px; }
  .media-card { padding: 12px; border-radius: 20px; }
  .video-shell { border-radius: 13px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .visitor-stats { flex-wrap: wrap; }
  .site-footer small { grid-column: 1; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions { justify-content: space-between; }
}

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