:root {
  --paper: #f3e6c8;
  --paper-2: #e7d4ae;
  --cream: #fff6e4;
  --ink: #1c120c;
  --ink-soft: #3b2a1d;
  --wood: #3a2418;
  --wood-2: #5a3824;
  --leather: #8a4f32;
  --lamp: #f0b14a;
  --lamp-hot: #ffd37a;
  --moss: #2f5b3c;
  --moss-2: #3f7a4e;
  --neon: #5ce1ff;
  --pink: #ff9ec4;
  --red: #d61f2a;
  --red-deep: #9d1520;
  --lcd: #7dff9a;
  --crt: #07140e;
  --tape: #d8c39a;
  --shadow: 7px 8px 0 var(--ink);
  --radius: 18px;
  --font-ui: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-display: "Luckiest Guy", "Fredoka", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
  --font-pixel: "Press Start 2P", monospace;
  --font-stamp: "Special Elite", serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(240, 177, 74, .28), transparent 55%),
    radial-gradient(900px 600px at 110% 20%, rgba(47, 91, 60, .16), transparent 50%),
    radial-gradient(800px 500px at 50% 120%, rgba(138, 79, 50, .18), transparent 50%),
    var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button, a { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--lamp); outline-offset: 3px; }
::selection { background: var(--lamp); color: var(--ink); }

.paper-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--cream);
  padding: .5rem 1rem;
  z-index: 30;
}
.skip:focus { top: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1rem;
  background: linear-gradient(#6b4228, var(--wood));
  color: var(--cream);
  box-shadow: 0 8px 0 #1a100b;
  border-bottom: 4px solid #f0b14a;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  flex: 1;
}
.logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 3px 3px 0 #1a100b;
}
.logo small {
  display: block;
  font-family: var(--font-stamp);
  font-size: .72rem;
  letter-spacing: .04em;
  opacity: .85;
}
.logo strong {
  display: block;
  font-family: var(--font-ui);
  font-size: .95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}

.nav-links {
  display: none;
  margin-left: auto;
  gap: .35rem;
  flex-wrap: wrap;
}
.nav-links a, .drawer nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  padding: .4rem .55rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: .86rem;
}
.nav-links a.is-on, .drawer nav a.is-on {
  background: var(--lamp);
  color: var(--ink);
  border-color: #1a100b;
}
.top-tools { margin-left: auto; display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.lang {
  display: flex;
  background: #1a100b;
  border-radius: 999px;
  padding: 3px;
}
.lang button {
  border: 0;
  background: transparent;
  color: var(--cream);
  border-radius: 999px;
  padding: .35rem .6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.lang svg { width: 18px; height: 12px; border-radius: 2px; box-shadow: 0 0 0 1px #0006; }
.lang button.is-on { background: var(--moss); }
.menu-btn {
  width: 44px;
  height: 44px;
  border: 3px solid #1a100b;
  border-radius: 10px;
  background: var(--lamp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.burger, .burger::before, .burger::after {
  display: block;
  width: 18px;
  height: 3px;
  background: #1a100b;
  border-radius: 2px;
  position: relative;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger::before { top: -6px; }
.burger::after { top: 6px; }

.drawer {
  display: none;
  position: fixed;
  inset: 0 0 auto 0;
  top: 72px;
  background: #24150f;
  z-index: 19;
  padding: 1rem;
  box-shadow: 0 16px 0 #1a100b;
}
.drawer.is-open { display: block; }
.drawer nav { display: grid; gap: .4rem; }
.drawer nav a { display: block; font-size: 1.15rem; }
.drawer-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 2rem;
}

main {
  width: min(var(--max), calc(100% - 1.5rem));
  margin: 1.2rem auto 3rem;
  outline: none;
}

.hero {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-copy { padding: .4rem .2rem 0; }
.brand-kicker, .kicker {
  font-family: var(--font-stamp);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .35rem;
  color: var(--red-deep);
}
.presents {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  margin: 0;
  opacity: .8;
}
.family-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 8vw, 4.4rem);
  line-height: .92;
  margin: .2rem 0 .6rem;
  color: var(--wood);
  text-shadow: 3px 4px 0 rgba(240, 177, 74, .7);
}
.family-title small {
  display: block;
  font-size: .45em;
  color: var(--red);
}
.tagline {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  margin: 0 0 .8rem;
}
.welcome { margin: 0 0 1.1rem; font-size: 1.05rem; }
.hero-actions, .game-card-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 48px;
  padding: .7rem 1.15rem;
  border-radius: 14px;
  border: 3px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: translate(0, 0);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 9px 10px 0 var(--ink); }
.btn:active { transform: translate(2px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-play { background: var(--red); color: #fff6e4; }
.btn-team { background: var(--moss); color: #fff6e4; }
.btn-ghost { background: var(--cream); }
.btn-sm { min-height: 42px; padding: .45rem .8rem; font-size: .95rem; }
.btn-lg { min-height: 54px; padding: .85rem 1.4rem; font-size: 1.1rem; }

.crt {
  background: linear-gradient(#2a2118, #17120e);
  border: 10px solid #2b2118;
  border-radius: 28px 28px 22px 22px;
  box-shadow: 0 18px 0 #1a100b, inset 0 0 0 3px #70543b;
  overflow: hidden;
}
.crt-screen { position: relative; background: var(--crt); }
.crt-screen img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.05) saturate(1.08);
  animation: crtOn .7s ease both;
}
.crt-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(0,0,0,.12) 0 2px, transparent 2px 5px),
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.12), transparent 40%);
  mix-blend-mode: multiply;
}
.crt-bezel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .35rem .8rem .55rem;
  color: var(--tape);
  font-family: var(--font-pixel);
  font-size: .45rem;
}
.power-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dff9a;
  box-shadow: 0 0 8px #7dff9a;
}
.neon-bubble {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  background: rgba(8, 28, 40, .72);
  color: var(--neon);
  font-family: var(--font-pixel);
  font-size: clamp(.42rem, 1.6vw, .62rem);
  line-height: 1.5;
  padding: .55rem .7rem;
  border-radius: 18px 18px 18px 6px;
  box-shadow: 0 0 0 2px var(--neon), 0 0 18px rgba(92, 225, 255, .55);
  max-width: 92%;
}
.neon-bubble.is-flash { animation: shake .4s ease; }

.hud-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin: 1.4rem 0 2rem;
  padding: .8rem;
  background: var(--ink);
  color: var(--lcd);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-family: var(--font-pixel);
}
.hud-stat { padding: .35rem; }
.hud-label { display: block; font-size: .42rem; opacity: .75; letter-spacing: .04em; }
.hud-value { font-size: .62rem; line-height: 1.6; }

.section-head, .page-head { margin: 0 0 1rem; }
.page-head h1, .section-head h2, .heart-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: .95;
  margin: 0 0 .4rem;
}
.lede { font-size: 1.08rem; max-width: 42rem; }
.crumb { font-weight: 800; }
.crumb a { color: var(--wood); }

.game-grid {
  display: grid;
  gap: 1rem;
}
.game-card, .creator-card, .creation-card, .tomb, .box-pile {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.game-card-art { display: block; position: relative; }
.game-card-img, .detail-img, .poster-cthulhu, .poster-fallback {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111;
}
.game-card .game-card-img,
.game-card .poster-cthulhu,
.game-card .poster-fallback {
  aspect-ratio: 4 / 3;
  max-height: 340px;
  object-position: top center;
}
.poster-cthulhu svg { width: 100%; height: auto; display: block; }
.game-card-body, .creation-body { padding: 1rem; }
.game-kicker, .meta { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.game-card h3 { margin: .2rem 0 .4rem; font-family: var(--font-ui); font-size: 1.45rem; }
.game-card h3 a { color: inherit; text-decoration: none; }

.pill {
  position: absolute;
  left: 10px;
  top: 10px;
  background: var(--lamp);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .2rem .55rem;
  font-weight: 800;
  font-size: .8rem;
}
.pill-almost-ready { background: var(--lamp); }
.pill-in-dev { background: #e07a2f; color: white; }
.pill-released { background: var(--moss); color: white; }
.game-detail .pill { position: static; }

.heart-section {
  margin: 2.2rem 0;
  padding: 1.4rem 1.1rem;
  background: var(--cream);
  border: 3px dashed var(--leather);
  border-radius: 24px;
  text-align: center;
}
.heart-line {
  font-family: var(--font-hand);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  margin: .1rem 0;
  line-height: 1.1;
}
.heart-but { font-weight: 800; font-size: 1.15rem; }
.heart-memories { font-style: italic; }

.influences { margin: 2rem 0; }
.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .8rem;
}
.sticker {
  border: 2px solid var(--ink);
  background: var(--cream);
  border-radius: 8px;
  padding: .45rem .7rem;
  font-family: var(--font-ui);
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1.5deg);
}
.sticker:nth-child(2) { transform: rotate(1.5deg); background: #c9d7e8; }
.sticker:nth-child(3) { transform: rotate(-.5deg); background: #222; color: #eee; }
.sticker:nth-child(4) { transform: rotate(2deg); background: #7a2a8a; color: white; }
.sticker:nth-child(5) { transform: rotate(-2deg); background: #d9d9d9; }

.manifesto {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
.studio-frame {
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}
.notes { display: grid; gap: 1rem; }
.sticky {
  min-height: 160px;
  padding: 1rem;
  font-family: var(--font-hand);
  font-size: 1.55rem;
  line-height: 1.15;
  box-shadow: 4px 6px 0 rgba(28,18,12,.25);
  transform: rotate(-1.5deg);
}
.sticky-yellow { background: #ffe566; }
.sticky-pink { background: var(--pink); transform: rotate(1.8deg); }
.sticky ul { margin: 0; padding: 0; list-style: none; }
.sticky li { display: flex; gap: .4rem; }
.sticky li span { color: var(--red); font-weight: 800; }

.game-detail {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.game-detail-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  line-height: .95;
  margin: .3rem 0;
}
.spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  background: #efe0c3;
  padding: .9rem;
  border-radius: 12px;
}
.spec dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; opacity: .7; }
.spec dd { margin: 0; font-weight: 800; }
.extra-list { padding-left: 1.1rem; }

.meter-panel {
  background: #102016;
  color: var(--lcd);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 4px solid #2a2118;
}
.meter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.meter-panel h2 {
  font-family: var(--font-pixel);
  font-size: .72rem;
  margin: 0;
  text-align: center;
}
.meter-hint { opacity: .7; font-size: .95rem; }
.lcd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lcd);
  box-shadow: 0 0 8px var(--lcd);
}
.meter-row { margin: .7rem 0; }
.meter-label { display: flex; justify-content: space-between; font-family: var(--font-ui); margin-bottom: .25rem; }
.meter-track {
  height: 14px;
  background: #07140e;
  border: 2px solid #7dff9a55;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2f5b3c, var(--lcd));
  box-shadow: 0 0 10px #7dff9a;
  transition: width .8s ease;
}
.meter-fill.is-over { background: linear-gradient(90deg, var(--lcd), var(--lamp)); }

.team-photo { margin: 0 0 1.4rem; }
.team-photo figcaption {
  padding: .5rem .8rem .8rem;
  color: var(--tape);
  font-family: var(--font-hand);
  font-size: 1.2rem;
}
.creator-grid, .creation-grid, .hall-grid, .box-grid {
  display: grid;
  gap: 1rem;
}
.creator-card { padding: 1.1rem; }
.creator-emoji { font-size: 2.4rem; }
.creator-card h2 { font-family: var(--font-display); margin: .2rem 0; }
.creator-moss { box-shadow: 7px 8px 0 var(--moss); }
.creator-lamp { box-shadow: 7px 8px 0 var(--lamp); }
.creator-neon { box-shadow: 7px 8px 0 var(--neon); }
.role-list { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; list-style: none; }
.role-list li {
  background: #efe0c3;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .15rem .55rem;
  font-size: .88rem;
  font-weight: 700;
}
.also, .pseudo { font-weight: 800; }
.pseudo-btn {
  border: 0;
  background: #111;
  color: var(--lcd);
  font-family: var(--font-pixel);
  font-size: .55rem;
  padding: .45rem .6rem;
  border-radius: 8px;
}
.loading-dots::after {
  content: "";
  animation: dots 1.2s infinite;
}
blockquote {
  margin: 1rem 0 0;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  border-left: 5px solid var(--red);
  padding-left: .7rem;
}

.filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.chip {
  border: 2px solid var(--ink);
  background: var(--cream);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-weight: 700;
}
.chip.is-on { background: var(--wood); color: var(--cream); }
.creation-card { transform: rotate(var(--tilt, 0deg)); overflow: hidden; }
.creation-art svg { width: 100%; height: auto; display: block; }
.stamp {
  display: inline-block;
  font-family: var(--font-stamp);
  color: var(--red);
  border: 2px solid var(--red);
  padding: .15rem .4rem;
  transform: rotate(-3deg);
}

.cardboard {
  background: linear-gradient(#c9a36a, #b5894d);
  border: 4px solid #6b4a24;
  border-radius: 8px 8px 18px 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.cardboard-flap {
  height: 18px;
  margin: -1rem -1rem 1rem;
  background: repeating-linear-gradient(90deg, #d8b57a 0 40px, #c49a5c 40px 80px);
  border-bottom: 3px solid #6b4a24;
}
.last-activity {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  background: #fff3c4;
  display: inline-block;
  padding: .3rem .7rem;
  transform: rotate(-2deg);
  cursor: pointer;
}
.box-pile { padding: 1rem; }
.box-pile h2 { font-family: var(--font-ui); margin-top: 0; }
.box-item { margin-bottom: .8rem; }
.box-item a, .box-item span { font-weight: 800; color: var(--ink); }

.tomb { padding: 1rem; }
.tomb.abandoned { background: #ece4d4; }
.tomb.bug { background: #f7e4c4; }
.tomb-kind { font-weight: 800; margin: 0; }
.lifespan, .cause { font-family: var(--font-stamp); }
.muted { opacity: .75; }

.site-footer {
  background: var(--wood);
  color: var(--cream);
  padding: 1.5rem 1rem 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 -8px 0 #1a100b;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand { font-family: var(--font-stamp); letter-spacing: .08em; }
.footer-toys { display: flex; gap: .5rem; align-items: center; }
.floppy, .mug, .secret {
  width: 48px;
  height: 48px;
  border: 3px solid #1a100b;
  border-radius: 10px;
  background: var(--cream);
  font-size: 1.3rem;
}
.secret { color: var(--red); background: #1a100b; }
.stamp-banner {
  width: min(var(--max), 100%);
  margin: 0 auto 1rem;
  text-align: center;
  font-family: var(--font-stamp);
  color: #ffb4b4;
  border: 3px solid #d61f2a;
  padding: .7rem;
}
.legal { width: min(var(--max), 100%); margin: 0 auto; opacity: .8; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: var(--lcd);
  font-family: var(--font-pixel);
  font-size: .55rem;
  line-height: 1.5;
  padding: .8rem 1rem;
  border-radius: 10px;
  width: min(520px, calc(100% - 1.5rem));
  opacity: 0;
  pointer-events: none;
  z-index: 40;
  transition: .2s ease;
}
.toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

.error-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: grid;
  place-items: center;
  z-index: 50;
  padding: 1rem;
}
.error-modal[hidden] { display: none; }
.error-window {
  background: #d8d2c4;
  border: 4px solid #2a2118;
  width: min(420px, 100%);
  padding: 1rem;
  box-shadow: 10px 12px 0 #111;
  font-family: Tahoma, sans-serif;
}
.error-window h2 {
  margin: -1rem -1rem 1rem;
  background: #000080;
  color: white;
  padding: .4rem .7rem;
  font-size: 1rem;
}
.error-window button {
  background: #d8d2c4;
  border: 2px outset #fff;
  min-width: 80px;
  min-height: 36px;
}

.couch-mode {
  filter: hue-rotate(-12deg) saturate(1.15);
}
.couch-mode .topbar { border-bottom-color: var(--neon); }

@keyframes crtOn {
  from { filter: contrast(1.8) brightness(2); opacity: .4; }
  to { filter: contrast(1.05) saturate(1.08); opacity: 1; }
}
@keyframes shake {
  0%, 100% { transform: translateX(-50%) rotate(0); }
  30% { transform: translateX(-48%) rotate(-2deg); }
  60% { transform: translateX(-52%) rotate(2deg); }
}
@keyframes dots {
  0% { content: ""; }
  33% { content: "."; }
  66% { content: ".."; }
  100% { content: "..."; }
}

@media (min-width: 960px) {
  .menu-btn { display: none; }
  .nav-links { display: flex; }
  .top-tools { margin-left: 0; }
}
@media (min-width: 780px) {
  .hero { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .hud-strip { grid-template-columns: repeat(4, 1fr); }
  .game-grid, .creator-grid, .hall-grid, .box-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { grid-template-columns: 1fr 1fr; align-items: center; }
  .game-detail { grid-template-columns: .9fr 1.1fr; align-items: start; }
}
@media (min-width: 1040px) {
  .creation-grid { grid-template-columns: repeat(4, 1fr); }
  .creator-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (hover: hover) {
  .btn-play:hover, .btn-team:hover { animation: shakeBtn .28s ease; }
}
@keyframes shakeBtn {
  25% { transform: translate(-2px, -2px) rotate(-1deg); }
  75% { transform: translate(-2px, -2px) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .paper-grain, .crt-glass { opacity: .08; }
}

@media (max-width: 959px) {
  .topbar { padding: .45rem .55rem; gap: .45rem; }
  .logo { gap: .45rem; }
  .logo img { width: 32px; height: 32px; }
  .logo small { display: none; }
  .logo strong { max-width: 36vw; font-size: .78rem; }
  .crt-glass { opacity: .35; }
  .neon-bubble { font-size: .38rem; }
  .topbar .lang button {
    font-size: 0;
    gap: 0;
    padding: .4rem .45rem;
  }
  .topbar .lang svg {
    width: 22px;
    height: 14px;
  }
}
