:root {
  --bg: #120a2a;
  --bg-soft: #1a1040;
  --panel: #20144e;
  --panel-alt: #160d36;
  --text: #f5f4ff;
  --muted: #b9b5d8;
  --blue: #38bdf8;
  --yellow: #ffd84d;
  --red: #ff5757;
  --green: #41f29a;
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, .35);
  --radius: 24px;
  --shell: min(1200px, calc(100% - 24px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255,216,77,.12), transparent 24%),
    linear-gradient(180deg, #140b31 0%, #090514 100%);
  color: var(--text);
  font-family: Inter, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.page-shell, .header-shell, .footer-shell, .article-shell, .contact-shell { width: var(--shell); margin: 0 auto; }
.pixel-font, .logo-type, .hero-copy h1, .section-heading h2, .archive-head h1, .article-body h2, .article-body h3, .contact-hero h1, .article-hero h1 { font-family: 'Press Start 2P', cursive; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,5,20,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1 1 auto; }
.brand-mark {
  width: clamp(220px, 26vw, 280px);
  min-width: 220px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.brand-mark img { width: 100%; height: auto; object-fit: contain; }
.brand-copy { display: grid; gap: 4px; min-width: 0; }
.logo-type { font-size: clamp(1rem, 4vw, 1.25rem); color: var(--yellow); line-height: 1.2; }
.brand-copy span { color: var(--muted); font-size: .82rem; }
.primary-nav { display: none; }
.header-tools { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.search-box { position: relative; display: none; }
.search-box input {
  width: 250px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(32,20,78,.92);
  color: var(--text);
  padding: 12px 16px;
}
.search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, calc(100vw - 24px));
  display: none;
  background: rgba(17, 10, 42, .98);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.search-results.is-visible { display: block; }
.cart-toggle {
  min-width: 56px;
  height: 48px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 800;
}
.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
}
.search-item { display: grid; gap: 6px; padding: 14px 16px; border-top: 1px solid rgba(255,255,255,.08); }
.search-item:first-child { border-top: 0; }
.search-item span { color: var(--muted); font-size: .88rem; }
.social-links, .social-links-footer { display: flex; gap: 8px; align-items: center; }
.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--yellow);
  transition: transform .2s steps(2), background .2s ease, color .2s ease;
}
.social-icon:hover { transform: translateY(-2px) scale(1.05); background: rgba(255,216,77,.14); color: var(--blue); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  display: inline-grid;
  place-items: center;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--yellow); margin: 2px 0; }
.mobile-nav { display: none; width: var(--shell); margin: 0 auto 12px; gap: 10px; }
.site-header.is-open .mobile-nav { display: grid; }
.mobile-nav a { padding: 14px 16px; border-radius: 16px; background: rgba(32,20,78,.92); border: 1px solid var(--border); font-weight: 700; }
.hero { padding: 24px 0 28px; }
.hero-grid { display: grid; gap: 18px; }
.hero-copy, .hero-side, .mag-card, .review-card, .popular-panel, .article-card, .article-cta, .contact-card, .contact-form, .community-panel, .news-panel, .cookie-panel {
  background: linear-gradient(180deg, rgba(32,20,78,.94), rgba(15,9,37,.96));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.panel-media {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}
.panel-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero-copy {
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
}
.hero-kicker, .chip, .meta-row, .archive-label, .review-score, .score-label { letter-spacing: .12em; text-transform: uppercase; }
.hero-kicker, .archive-label, .score-label { color: var(--blue); font-weight: 800; font-size: .78rem; }
.hero-copy h1 { margin: 14px 0; font-size: clamp(1.7rem, 6.6vw, 3.25rem); line-height: 1.1; color: var(--yellow); }
.typewriter-line {
  min-height: 3.6em;
}
.typewriter-line.is-typing::after {
  content: '';
  display: inline-block;
  width: 0.18em;
  height: 0.9em;
  margin-left: 0.18em;
  vertical-align: -0.08em;
  background: var(--yellow);
  animation: pixel-blink .8s steps(1) infinite;
}
.hero-copy p { margin: 0 0 20px; color: var(--muted); line-height: 1.75; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: transform .15s steps(2), box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary { background: linear-gradient(180deg, var(--yellow), #ffbf1f); color: #13091d; box-shadow: 0 8px 0 #c18b0a; }
.btn-secondary { background: linear-gradient(180deg, #2f7bff, #1d4ed8); color: #fff; box-shadow: 0 8px 0 #102c76; }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.hero-side { padding: 18px; display: grid; gap: 16px; }
.hero-visual {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(65,242,154,.12), rgba(56,189,248,.18)), url('https://images.unsplash.com/photo-1542751371-29b4f74f9713?auto=format&fit=crop&w=1200&h=800&q=80') center/cover;
  position: relative;
  overflow: hidden;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(255,216,77,.35);
  border-radius: 18px;
}
.arcade-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.arcade-scene::before {
  content: '';
  position: absolute;
  inset: auto -20% 20% auto;
  width: 140%;
  height: 40%;
  background:
    linear-gradient(180deg, rgba(18,10,42,0) 0%, rgba(18,10,42,.12) 100%),
    repeating-linear-gradient(90deg, rgba(56,189,248,.14) 0 2px, transparent 2px 46px),
    repeating-linear-gradient(180deg, rgba(56,189,248,.12) 0 2px, transparent 2px 46px);
  transform: perspective(280px) rotateX(70deg);
  transform-origin: bottom center;
  opacity: .55;
}
.ground-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9%;
  height: 14%;
  background:
    linear-gradient(180deg, #4d2f1d 0%, #2a160e 100%);
  border-top: 4px solid #ffd84d;
  box-shadow: inset 0 4px 0 rgba(0,0,0,.18);
}
.ground-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 18px, transparent 18px 36px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.15) 0 12px, transparent 12px 24px);
}
.pixel-sun,
.pixel-cloud,
.platform-block,
.pixel-coin,
.pixel-runner,
.pixel-runner > span {
  position: absolute;
  image-rendering: pixelated;
}
.pixel-sun {
  width: 44px;
  height: 44px;
  top: 16%;
  right: 12%;
  background: #ffd84d;
  box-shadow:
    0 0 0 6px rgba(255,216,77,.12),
    0 0 0 12px rgba(255,216,77,.08);
}
.pixel-cloud {
  height: 14px;
  background: #f5f4ff;
  box-shadow:
    14px 0 0 #f5f4ff,
    28px 0 0 #f5f4ff,
    8px -8px 0 #f5f4ff,
    22px -8px 0 #f5f4ff;
  opacity: .82;
  animation: cloud-drift 8s linear infinite;
}
.cloud-a { width: 42px; top: 18%; left: 12%; }
.cloud-b { width: 42px; top: 28%; left: 58%; animation-duration: 10s; animation-delay: -4s; }
.platform-block {
  width: 40px;
  height: 40px;
  background: #b56e4a;
  border: 4px solid #ffd84d;
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,.15),
    0 6px 0 rgba(0,0,0,.15);
}
.platform-block::before,
.platform-block::after {
  content: '';
  position: absolute;
  background: rgba(255,216,77,.45);
}
.platform-block::before {
  width: 6px;
  height: 6px;
  top: 8px;
  left: 8px;
  box-shadow: 16px 0 0 rgba(255,216,77,.45), 8px 12px 0 rgba(255,216,77,.45);
}
.platform-block::after {
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 8px;
}
.block-a { top: 24%; left: 36%; }
.block-b { top: 24%; left: 48%; }
.block-c { top: 24%; left: 60%; }
.pixel-coin {
  width: 18px;
  height: 18px;
  background: #ffd84d;
  border: 3px solid #ffbf1f;
  animation: coin-pop 1.1s steps(2) infinite;
}
.pixel-coin::before {
  content: '';
  position: absolute;
  inset: 3px 5px;
  border-left: 2px solid rgba(19,9,29,.55);
  border-right: 2px solid rgba(19,9,29,.55);
}
.coin-a { top: 14%; left: 40%; }
.coin-b { top: 12%; left: 52%; animation-delay: -.3s; }
.coin-c { top: 14%; left: 64%; animation-delay: -.6s; }
.pixel-runner {
  width: 38px;
  height: 58px;
  left: -14%;
  bottom: 16%;
  animation: runner-route 7s linear infinite;
}
.runner-head {
  width: 18px;
  height: 18px;
  top: 0;
  left: 10px;
  background: #ffd1ac;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.12);
}
.runner-head::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 18px;
  height: 8px;
  background: #ff5757;
}
.runner-body {
  width: 20px;
  height: 20px;
  top: 18px;
  left: 9px;
  background: #ff5757;
}
.runner-arm,
.runner-leg {
  width: 6px;
  background: #ffd1ac;
  transform-origin: top center;
}
.runner-arm { height: 16px; top: 20px; }
.runner-leg { height: 18px; top: 37px; }
.arm-a { left: 4px; animation: limb-swing-a .35s steps(2) infinite; }
.arm-b { right: 4px; animation: limb-swing-b .35s steps(2) infinite; }
.leg-a { left: 10px; animation: limb-swing-b .35s steps(2) infinite; }
.leg-b { right: 10px; animation: limb-swing-a .35s steps(2) infinite; }
.hero-visual::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(65,242,154,.8) 12%, rgba(56,189,248,.55) 50%, transparent 100%);
  opacity: .65;
  animation: track-shift 1.2s linear infinite;
}
.pixel-stats { display: grid; gap: 12px; }
.pixel-stat {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  animation: pixel-stat-float 3.2s ease-in-out infinite, pixel-stat-pulse 2.4s ease-in-out infinite;
}
.pixel-stat:nth-child(2) {
  animation-delay: .35s, .35s;
}
.pixel-stat:nth-child(3) {
  animation-delay: .7s, .7s;
}
.pixel-stat strong { font-family: Orbitron, sans-serif; font-size: 1.6rem; color: var(--green); }
.section { padding: 28px 0; }
.section-heading { display: grid; gap: 12px; margin-bottom: 18px; }
.section-heading h2, .archive-head h1, .contact-hero h1, .article-hero h1 { margin: 0; font-size: clamp(1.6rem, 5vw, 2.8rem); line-height: 1.15; color: var(--yellow); }
.section-heading p, .archive-head p, .contact-hero p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 70ch; }
.article-grid, .archive-grid, .related-grid, .footer-grid, .contact-grid, .review-grid, .popular-grid { display: grid; gap: 18px; }
.featured-carousel {
  --featured-gap: 18px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.featured-track {
  display: flex;
  align-items: stretch;
  gap: var(--featured-gap);
  width: max-content;
  will-change: transform;
  padding: 4px 0;
  transform: translateX(0);
}
.featured-carousel {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.featured-carousel.is-dragging {
  cursor: grabbing;
}
.article-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s steps(2), border-color .2s ease;
}
.article-card:hover { transform: translateY(-4px); border-color: rgba(255,216,77,.45); }
.featured-card {
  width: min(82vw, 330px);
  flex: 0 0 auto;
  transition: transform .22s steps(2), width .22s ease, border-color .2s ease, box-shadow .2s ease;
  transform-origin: center center;
}
.featured-card:hover {
  width: min(82vw, 390px);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,216,77,.52);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .42);
  z-index: 3;
}
.featured-carousel.is-paused .featured-card:hover,
.featured-carousel.is-dragging .featured-card:hover {
  width: min(82vw, 390px);
  transform: translateY(-6px) scale(1.02);
}
.article-card figure { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; }
.article-card img { width: 100%; height: 100%; object-fit: cover; }
.product-link { display: block; }
.article-card-copy { display: grid; gap: 12px; padding: 18px; }
.product-actions,
.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-actions {
  padding: 0 18px 18px;
  margin-top: auto;
}
.product-actions .btn,
.article-cta-actions .btn {
  flex: 1 1 170px;
}
.chip { width: fit-content; padding: 8px 10px; border-radius: 999px; background: rgba(56,189,248,.14); color: var(--blue); font-size: .72rem; font-weight: 800; }

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.product-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,87,87,.14);
  color: var(--red);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.product-footer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price {
  font-family: Orbitron, sans-serif;
  color: var(--yellow);
  font-size: 1.2rem;
}
.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: .92rem;
}
.article-card h3, .review-card h3, .popular-panel h3, .community-panel h3, .news-panel h3 { margin: 0; font-size: 1.16rem; line-height: 1.35; }
.article-card p, .review-card p, .community-panel p, .news-panel p, .contact-card p, .contact-form p { margin: 0; color: var(--muted); line-height: 1.7; }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .83rem; }
.review-grid { grid-template-columns: 1fr; }
.review-card { display: grid; gap: 16px; padding: 18px; align-items: start; }
.review-score {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: #11091f;
  font-family: Orbitron, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}
.review-card a, .news-panel a, .community-panel a, .article-cta a { color: var(--green); font-weight: 700; }
.popular-panel { padding: 18px; display: grid; gap: 14px; }
.popular-list { display: grid; gap: 12px; }
.popular-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.08); }
.popular-item:first-child { border-top: 0; padding-top: 0; }
.popular-rank { font-family: 'Press Start 2P', cursive; color: var(--red); font-size: .92rem; }
.archive-head, .contact-hero { display: grid; gap: 12px; padding: 26px 0 8px; }
.article-layout { display: grid; gap: 22px; padding: 24px 0 36px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.breadcrumbs a { color: var(--green); }
.article-hero { display: grid; gap: 14px; }
.article-hero-media { margin: 0; overflow: hidden; border-radius: 24px; border: 1px solid var(--border); }
.article-hero-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .9rem; }
.article-body { display: grid; gap: 20px; }
.article-body p, .article-body li { margin: 0; color: var(--text); line-height: 1.9; }
.article-body h2, .article-body h3 { margin: 8px 0 0; }
.article-body figure { margin: 0; display: grid; gap: 10px; }
.article-body figure img { border-radius: 20px; aspect-ratio: 3 / 2; object-fit: cover; }
.article-body figcaption { color: var(--muted); font-size: .88rem; }
.article-cta { padding: 20px; }
.article-cta-actions { margin-top: 16px; }
.contact-grid, .contact-cards { grid-template-columns: 1fr; }
.contact-card, .contact-form, .community-panel, .news-panel { padding: 20px; }
.contact-card, .community-panel, .news-panel { display: grid; gap: 14px; }
.contact-map-card { align-content: start; }
.map-frame {
  border: 2px solid rgba(77, 201, 255, 0.22);
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  background: rgba(8, 11, 32, 0.82);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}
.contact-form { display: grid; gap: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 14px 16px;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.consent-check { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); line-height: 1.6; }
.consent-check input { width: 18px; height: 18px; margin-top: 3px; }
.site-footer { margin-top: 32px; padding: 30px 0 42px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(8,5,18,.86); }
.footer-grid { grid-template-columns: 1fr; }
.footer-brand { display: grid; gap: 12px; }
.footer-brand strong { font-family: 'Press Start 2P', cursive; color: var(--yellow); font-size: 1.1rem; line-height: 1.5; }
.footer-note, .footer-links a, .footer-legal a { color: var(--muted); }
.footer-links, .footer-legal { display: grid; gap: 10px; }
.cookie-banner { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 79;
}
.cart-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 18px;
  background: rgba(12, 8, 30, .98);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform .22s ease;
  z-index: 81;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head,
.cart-total-row,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-drawer-head strong {
  color: var(--yellow);
  font-family: Orbitron, sans-serif;
}
.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 1.4rem;
}
.cart-items {
  overflow: auto;
  display: grid;
  gap: 12px;
}
.cart-line {
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  flex: 0 0 auto;
}
.cart-line-copy {
  flex: 1 1 auto;
  display: grid;
  gap: 6px;
}
.cart-line-copy span {
  color: var(--muted);
  font-size: .9rem;
}
.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cart-line-actions button {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 10px;
  padding: 6px 10px;
}
.cart-summary {
  display: grid;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cart-empty {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}
.cookie-panel { padding: 18px; }
.cookie-kicker { display: inline-flex; margin-bottom: 10px; color: var(--yellow); font-family: 'Press Start 2P', cursive; font-size: .62rem; line-height: 1.6; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
@keyframes pixel-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes cloud-drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(12px); }
  100% { transform: translateX(0); }
}
@keyframes coin-pop {
  0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
  50% { transform: translateY(-6px) scale(1.08); filter: brightness(1.15); }
}
@keyframes runner-route {
  0% { transform: translateX(0) translateY(0); }
  38% { transform: translateX(140px) translateY(0); }
  46% { transform: translateX(172px) translateY(-44px); }
  58% { transform: translateX(240px) translateY(-44px); }
  68% { transform: translateX(286px) translateY(0); }
  100% { transform: translateX(420px) translateY(0); }
}
@keyframes limb-swing-a {
  0%, 100% { transform: rotate(22deg); }
  50% { transform: rotate(-20deg); }
}
@keyframes limb-swing-b {
  0%, 100% { transform: rotate(-20deg); }
  50% { transform: rotate(22deg); }
}
@keyframes track-shift {
  0% { transform: translateX(-16px); opacity: .45; }
  50% { opacity: .85; }
  100% { transform: translateX(16px); opacity: .45; }
}
@keyframes pixel-stat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pixel-stat-pulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 0 0 rgba(65,242,154,0); }
  50% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 0 24px rgba(65,242,154,.16); }
}
@keyframes featured-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--featured-gap) / 2))); }
}
@media (min-width: 760px) {
  .header-shell { grid-template-columns: auto 1fr auto; }
  .brand-mark {
    width: clamp(220px, 20vw, 260px);
    min-width: 220px;
  }
  .primary-nav { display: flex; gap: 6px; align-items: center; }
  .primary-nav a { padding: 10px 12px; border-radius: 999px; color: var(--muted); font-weight: 700; }
  .primary-nav a:hover, .primary-nav a.is-active { background: rgba(255,255,255,.08); color: var(--yellow); }
  .search-box { display: block; }
  .menu-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.35fr .75fr; align-items: stretch; }
  .article-grid, .archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .popular-grid { grid-template-columns: 1.2fr .8fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .featured-card {
    width: 320px;
  }
  .featured-card:hover {
    width: 420px;
  }
  .featured-carousel.is-paused .featured-card:hover,
  .featured-carousel.is-dragging .featured-card:hover {
    width: 420px;
  }
}
@media (max-width: 759px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px 0;
  }
  .brand-mark {
    width: min(72vw, 320px);
    min-width: 220px;
  }
  .header-tools { flex-wrap: wrap; }
  .block-a { left: 28%; }
  .block-b { left: 44%; }
  .block-c { left: 60%; }
  .coin-a { left: 32%; }
  .coin-b { left: 48%; }
  .coin-c { left: 64%; }
  @keyframes runner-route {
    0% { transform: translateX(0) translateY(0); }
    40% { transform: translateX(84px) translateY(0); }
    48% { transform: translateX(112px) translateY(-42px); }
    60% { transform: translateX(166px) translateY(-42px); }
    70% { transform: translateX(200px) translateY(0); }
    100% { transform: translateX(285px) translateY(0); }
  }
  .featured-track {
    gap: var(--featured-gap);
    animation-duration: 22s;
  }
  .featured-carousel {
    --featured-gap: 14px;
  }
  .featured-card {
    width: min(86vw, 300px);
  }
  .featured-card:hover {
    width: min(86vw, 332px);
  }
  .featured-carousel.is-paused .featured-card:hover,
  .featured-carousel.is-dragging .featured-card:hover {
    width: min(86vw, 332px);
  }
}
