*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060608;
  --bg2: #0d0d12;
  --bg3: #12121a;
  --bg4: #1a1a24;
  --border: #1e1e2e;
  --border2: #2a2a3e;
  --text: #f0f0f8;
  --text-muted: #8080a8;
  --text-dim: #404060;
  --accent: #7c6dfa;
  --accent2: #fa6d8a;
  --accent3: #6df0fa;
  --green: #4ade80;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

/* ── Locale widget (Language + Currency) ── */
.locale-widget {
  position: relative;
}
.locale-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  border-radius: 999px; padding: 6px 12px;
  font-family: inherit; font-size: 12px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.locale-btn:hover { border-color: var(--accent); color: var(--text); }
.locale-btn__sep { color: var(--text-dim); }
.locale-btn__chevron { transition: transform 0.2s; flex-shrink: 0; }
.locale-btn:has(+ .locale-dropdown:not(.hidden)) .locale-btn__chevron { transform: rotate(180deg); }

.locale-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 16px; padding: 16px;
  min-width: 260px; z-index: 300;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  animation: dropIn 0.2s cubic-bezier(.22,1,.36,1);
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.locale-dropdown.hidden { display: none; }

.locale-section-title {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-dim); margin: 12px 0 8px;
}
.locale-section-title:first-child { margin-top: 0; }

.locale-langs,
.locale-currencies {
  display: grid; gap: 3px;
}
.locale-langs { grid-template-columns: 1fr 1fr; }
.locale-currencies { grid-template-columns: 1fr 1fr; }

.locale-option {
  display: flex; align-items: center; gap: 7px;
  background: none; border: 1px solid transparent;
  border-radius: 8px; padding: 7px 10px;
  font-family: inherit; font-size: 12px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: all 0.15s;
  text-align: left; white-space: nowrap;
}
.locale-option:hover { background: var(--bg4); color: var(--text); border-color: var(--border2); }
.locale-option.active {
  background: rgba(124,109,250,0.12); color: var(--accent);
  border-color: rgba(124,109,250,0.3);
}
.locale-option__name { font-weight: 400; color: var(--text-dim); font-size: 11px; }

/* ── Discord Auth Widget ── */
.auth-widget { position: relative; }

.btn--discord {
  background: #5865f2;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(88,101,242,0.35);
  border: none !important;
}
.btn--discord:hover { background: #4752c4 !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(88,101,242,0.5); }

.auth-user {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 12px 5px 6px; border-radius: 999px;
  background: rgba(88,101,242,0.08); border: 1px solid rgba(88,101,242,0.25);
  cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text-muted);
  transition: all 0.2s; white-space: nowrap;
}
.auth-user:hover { border-color: rgba(88,101,242,0.5); color: var(--text); }
.auth-username { max-width: 96px; overflow: hidden; text-overflow: ellipsis; }

.auth-avatar {
  width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.auth-avatar--text {
  display: flex; align-items: center; justify-content: center;
  background: #5865f2; color: #fff; font-size: 9px; font-weight: 800;
  border-radius: 50%; flex-shrink: 0;
}

.auth-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 14px; padding: 12px;
  min-width: 196px; z-index: 300;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  animation: dropIn 0.2s cubic-bezier(.22,1,.36,1);
}
.auth-dropdown.hidden { display: none; }
.auth-dropdown__profile { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; }
.auth-dropdown__name { font-size: 13px; font-weight: 700; color: var(--text); }
.auth-dropdown__tag { font-size: 11px; color: var(--text-dim); margin-top: 1px; }
.auth-dropdown__divider { height: 1px; background: var(--border); margin-bottom: 8px; }
.auth-dropdown__btn {
  width: 100%; background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
  font-family: inherit; font-size: 12px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s; text-align: left;
}
.auth-dropdown__btn:hover { background: rgba(250,109,138,0.08); border-color: rgba(250,109,138,0.3); color: var(--accent2); }
.auth-dropdown__ref { margin-bottom: 4px; }
.auth-dropdown__ref-label { font-size: 10px; color: var(--text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 5px; }
.auth-dropdown__ref-row { display: flex; gap: 4px; }
.auth-dropdown__ref-input {
  flex: 1; min-width: 0; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 7px; padding: 6px 8px; font-size: 11px; color: var(--text-muted);
  font-family: inherit; outline: none; cursor: pointer;
}
.auth-dropdown__ref-copy {
  flex-shrink: 0; background: rgba(124,109,250,.15); border: 1px solid rgba(124,109,250,.3);
  border-radius: 7px; padding: 6px 10px; font-size: 11px; font-weight: 700;
  color: var(--accent); cursor: pointer; transition: all .15s; white-space: nowrap;
}
.auth-dropdown__ref-copy:hover { background: rgba(124,109,250,.3); }

/* ── Hours widget ── */
.hours-widget {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  border-radius: 999px; padding: 5px 14px;
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  white-space: nowrap;
}
.hw-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.hw-dot--on {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}
.hw-dot--off { background: var(--text-dim); }
.hw-label { font-weight: 700; color: var(--text); }
.hw-dot--off + .hw-label { color: var(--text-muted); }
.hw-divider { color: var(--text-dim); }
.hw-kyiv { color: var(--text-muted); font-size: 11px; }
.hw-local { color: var(--text-dim); font-size: 11px; }
.hw-sub { color: var(--text-muted); font-size: 11px; }

/* ── Custom cursor ── */
.cur-dot,
.cur-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: opacity 0.3s;
}

/* Small sharp dot — snaps instantly (set via JS translate) */
.cur-dot {
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: #fff;
  mix-blend-mode: difference;
  transition: transform 0s, width 0.2s, height 0.2s, margin 0.2s;
}
.cur-dot--click {
  width: 3px; height: 3px;
  margin: -1.5px 0 0 -1.5px;
}

/* Larger ring — follows with lerp delay */
.cur-ring {
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  border: 1.5px solid rgba(124, 109, 250, 0.6);
  background: transparent;
  transition: width 0.25s cubic-bezier(.22,1,.36,1),
              height 0.25s cubic-bezier(.22,1,.36,1),
              margin 0.25s cubic-bezier(.22,1,.36,1),
              border-color 0.25s,
              background 0.25s;
}
.cur-ring--hover {
  width: 48px; height: 48px;
  margin: -24px 0 0 -24px;
  border-color: rgba(124, 109, 250, 0.9);
  background: rgba(124, 109, 250, 0.06);
}
.cur-ring--click {
  width: 24px; height: 24px;
  margin: -12px 0 0 -12px;
  border-color: rgba(250, 109, 138, 0.9);
  background: rgba(250, 109, 138, 0.08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Particles canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay1 { transition-delay: 0.1s; }
.reveal--delay2 { transition-delay: 0.2s; }
.reveal--delay3 { transition-delay: 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: 12px; font-family: inherit; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.22s; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #7c6dfa 0%, #5a4fcf 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,109,250,0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,109,250,0.55); filter: brightness(1.1); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(124,109,250,0.08); }
.btn--outline {
  background: transparent; color: var(--text-muted); border: 1px solid var(--border2);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--steam {
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
  color: #c7d5e0; border: 1px solid #2a475e;
  box-shadow: 0 4px 20px rgba(27,40,56,0.5);
}
.btn--steam:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,40,56,0.7); filter: brightness(1.15); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}
.header.scrolled {
  background: rgba(6,6,8,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text); font-size: 20px; font-weight: 900;
  letter-spacing: -0.02em;
}
.logo__icon { font-size: 22px; filter: drop-shadow(0 0 8px rgba(124,109,250,0.8)); }
.logo__accent { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 20px; }
.nav__link {
  color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 14px;
  transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.2s;
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { color: var(--text); }
.nav__link--active::after { transform: scaleX(1); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(6,6,8,0.98); border-top: 1px solid var(--border);
  padding: 8px 24px 20px; backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 14px 0; border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 148px 0 100px;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  opacity: 0.4;
}
.hero__inner { position: relative; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,109,250,0.08); border: 1px solid rgba(124,109,250,0.2);
  color: var(--text-muted); border-radius: 999px; padding: 7px 18px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,109,250,0); }
  50% { box-shadow: 0 0 20px 2px rgba(124,109,250,0.15); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Typewriter cursor */
.typewriter::after {
  content: '|';
  -webkit-text-fill-color: var(--accent);
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero__sub {
  color: var(--text-muted); font-size: 17px; max-width: 560px;
  margin: 0 auto 36px; line-height: 1.7;
}
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero__stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 32px; display: inline-flex;
  backdrop-filter: blur(8px);
}
.hero__stat { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 28px; }
.hero__stat-val { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; }
.hero__stat span:not(.hero__stat-label) { font-size: 18px; font-weight: 700; color: var(--accent); }
.hero__stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border2); }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(13,13,18,0.85);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  pointer-events: none;
}
.float-card__check { color: var(--green); font-size: 14px; }
.float-card--1 { left: 3%; top: 38%; animation: float1 6s ease-in-out infinite; }
.float-card--2 { right: 3%; top: 52%; animation: float2 7s ease-in-out infinite; }
.float-card--3 { left: 5%; top: 62%; animation: float1 8s ease-in-out infinite 1s; }
.float-card--4 { right: 4%; top: 34%; animation: float2 9s ease-in-out infinite 0.5s; }
.float-card--5 { left: 1%; top: 75%; animation: float1 7s ease-in-out infinite 2s; opacity: 0.7; }
.float-card--6 { right: 1%; top: 72%; animation: float2 6.5s ease-in-out infinite 1.5s; opacity: 0.7; }

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* ── Services strip ── */
.services-strip {
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.services-strip__track {
  display: flex; gap: 10px; width: max-content;
  animation: svcScroll 35s linear infinite;
}
.services-strip:hover .services-strip__track { animation-play-state: paused; }
@keyframes svcScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.service-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; flex-shrink: 0; transition: all 0.2s;
}
.service-pill:hover { border-color: var(--accent); color: var(--text); cursor: default; }

/* ── Section common ── */
.section { padding: 96px 0; }
.section__header { text-align: center; margin-bottom: 48px; }
.section__tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); background: rgba(124,109,250,0.1); border: 1px solid rgba(124,109,250,0.2);
  border-radius: 999px; padding: 4px 14px; margin-bottom: 14px;
}
.section__title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; }
.section__sub { color: var(--text-muted); font-size: 16px; max-width: 480px; margin: 0 auto; }

/* ── Category tabs ── */
.cat-tabs {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.cat-tab {
  padding: 9px 22px; border-radius: 999px; border: 1px solid var(--border2);
  background: transparent; color: var(--text-muted); font-family: inherit;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.cat-tab:hover { border-color: var(--accent); color: var(--accent); }
.cat-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Products grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.skeleton-card {
  height: 240px; border-radius: var(--radius);
  background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Product card ── */
.pcard--steam  { --pc: #1b9cfc; --pc-glow: rgba(27,156,252,0.18); }
.pcard--discord { --pc: #5865f2; --pc-glow: rgba(88,101,242,0.18); }

.pcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--pc, var(--accent));
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(.22,1,.36,1), box-shadow 0.28s, border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 0 1px var(--pc-glow, transparent);
  border-color: var(--pc, var(--accent));
  background: var(--bg3);
}

.pcard__badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 999px;
  background: var(--pc, var(--accent)); color: #fff;
}
.pcard__icon {
  font-size: 38px; line-height: 1;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1);
}
.pcard:hover .pcard__icon { transform: scale(1.15); }
.pcard__info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pcard__name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; padding-right: 70px; }
.pcard__desc { color: var(--text-muted); font-size: 13px; line-height: 1.6; }
.pcard__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.pcard__price { font-size: 26px; font-weight: 900; letter-spacing: -0.03em; color: var(--text); }
.pcard__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pc, var(--accent)); color: #fff;
  border: none; border-radius: 10px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: opacity 0.2s, box-shadow 0.2s;
  opacity: 0.88;
}
.pcard:hover .pcard__btn { opacity: 1; box-shadow: 0 4px 18px var(--pc-glow, rgba(124,109,250,0.4)); }

/* ── Steam Search ── */
.steam-search-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.search-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.search-box {
  position: relative; display: flex; align-items: center;
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,109,250,0.15), 0 8px 32px rgba(0,0,0,0.3);
}
.search-box__icon {
  padding: 0 0 0 20px; color: var(--text-muted); flex-shrink: 0;
  display: flex; align-items: center;
}
.search-box__input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: inherit; font-size: 16px; font-weight: 500;
  padding: 18px 14px; caret-color: var(--accent);
}
.search-box__input::placeholder { color: var(--text-dim); }
.search-box__spinner { padding: 0 16px; display: flex; align-items: center; }
.search-box__clear {
  padding: 0 16px; background: none; border: none; color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; transition: color 0.2s;
}
.search-box__clear:hover { color: var(--text); }

.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border2); border-top-color: var(--accent);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Rate bar */
.search-rate {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text-muted); padding: 0 4px;
}
.search-rate__badge {
  background: rgba(74,222,128,0.1); color: var(--green);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 999px; padding: 2px 10px; font-size: 11px; font-weight: 600;
}

/* Quick pills */
.search-hint { display: flex; flex-direction: column; gap: 14px; padding: 4px 0; }
.search-hint__label { font-size: 13px; font-weight: 600; color: var(--text-muted); }

.search-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.sgame {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 0; overflow: hidden;
  cursor: pointer; font-family: inherit; text-align: left;
  transition: transform 0.2s cubic-bezier(.22,1,.36,1), border-color 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.sgame:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.sgame img {
  width: 100%; aspect-ratio: 231/87; object-fit: cover;
  display: block; border-radius: 10px 10px 0 0;
  background: var(--bg4);
}
.sgame span {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  padding: 7px 10px; line-height: 1.2;
  transition: color 0.2s;
}
.sgame:hover span { color: var(--text); }

/* Results grid */
.search-results {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 10px;
}

/* ── Result cards ── */
.search-results { display: flex; flex-direction: column; gap: 10px; padding-bottom: 80px; }

.result-card {
  display: flex; gap: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.result-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }

.result-card__img-wrap { flex-shrink: 0; width: 180px; position: relative; }
.result-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Like button on image */
.like-btn {
  position: absolute; top: 7px; right: 7px;
  width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
  flex-shrink: 0; padding: 0;
}
.like-btn:hover { background: rgba(239,68,68,0.2); color: #ef4444; transform: scale(1.1); }
.like-btn--on { background: rgba(239,68,68,0.85) !important; color: #fff !important; }
.like-btn--on:hover { background: rgba(239,68,68,0.7) !important; transform: scale(1.1); }

/* Liked tray */
.liked-tray {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 900; display: flex; align-items: center; gap: 12px;
  background: rgba(20,20,32,0.95); border: 1px solid rgba(124,109,250,0.3);
  border-radius: 20px; padding: 10px 10px 10px 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,109,250,0.1);
  backdrop-filter: blur(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), opacity 0.25s;
  opacity: 0; pointer-events: none;
  white-space: nowrap;
}
.liked-tray--visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.liked-tray__info { display: flex; align-items: center; gap: 14px; }
.liked-tray__games { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--text); }
.liked-tray__price { font-size: 15px; font-weight: 900; color: var(--green); }
.liked-tray__share {
  background: linear-gradient(135deg, #7c6dfa 0%, #5a4fcf 100%);
  color: #fff; border: none; border-radius: 13px;
  padding: 10px 18px; font-size: 13px; font-weight: 800;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,109,250,0.4); transition: all 0.2s;
}
.liked-tray__share:hover { transform: scale(1.03); box-shadow: 0 6px 22px rgba(124,109,250,0.55); }
.liked-tray__share:disabled { opacity: 0.6; }
.liked-tray__clear {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; width: 28px; height: 28px; color: var(--text-muted);
  font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.liked-tray__clear:hover { background: rgba(239,68,68,0.15); color: #ef4444; border-color: rgba(239,68,68,0.3); }
.liked-tray__info {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; color: var(--text);
  font-family: inherit; font-size: 13px; padding: 4px 6px; border-radius: 10px;
  transition: background 0.2s;
}
.liked-tray__info:hover { background: rgba(255,255,255,0.06); }
.liked-tray__games { font-weight: 700; }
.liked-tray__sep { color: rgba(255,255,255,0.2); font-size: 10px; }
.liked-tray__price { font-weight: 800; color: var(--green); }

/* ── Wishlist edit panel ── */
.wl-panel {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 950; backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.wl-panel--open { opacity: 1; pointer-events: auto; }
.wl-panel__box {
  background: #0e0e16; border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px 28px 0 0; width: 100%; max-width: 520px;
  max-height: 85vh; display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(40px); transition: transform 0.32s cubic-bezier(0.34,1.1,0.64,1);
}
.wl-panel--open .wl-panel__box { transform: translateY(0); }
.wl-panel__handle {
  width: 36px; height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 2px; margin: 12px auto 0; flex-shrink: 0;
}
.wl-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px 12px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wl-panel__title { font-size: 17px; font-weight: 800; }
.wl-panel__sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.wl-panel__clear-all {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px; color: #ef4444; font-size: 12px; font-weight: 700;
  padding: 5px 12px; cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.wl-panel__clear-all:hover { background: rgba(239,68,68,0.15); }

/* Game list */
.wl-panel__list { flex: 1; overflow-y: auto; padding: 8px 16px; }
.wl-panel__empty { text-align: center; padding: 40px; color: var(--text-dim); font-size: 14px; }
.wl-pi {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 8px; border-radius: 12px; transition: background 0.15s;
}
.wl-pi:hover { background: rgba(255,255,255,0.03); }
.wl-pi + .wl-pi { border-top: 1px solid rgba(255,255,255,0.04); }
.wl-pi__img { width: 80px; height: 37px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: var(--bg3); }
.wl-pi__info { flex: 1; min-width: 0; }
.wl-pi__name { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-pi__price { font-size: 12px; color: var(--text-muted); margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.wl-pi__save { color: var(--green); font-weight: 700; font-size: 11px; background: rgba(77,172,130,0.1); padding: 1px 6px; border-radius: 4px; }
.wl-pi__rm {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.18s;
}
.wl-pi__rm:hover { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); color: #ef4444; }

/* Footer */
.wl-panel__footer {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px 24px; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.wl-panel__footer-info { flex: 1; }
.wl-panel__footer-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.wl-panel__footer-total { font-size: 22px; font-weight: 900; color: var(--green); }
.wl-panel__share {
  background: linear-gradient(135deg, #7c6dfa 0%, #5a4fcf 100%);
  color: #fff; border: none; border-radius: 14px; padding: 13px 22px;
  font-size: 14px; font-weight: 800; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 20px rgba(124,109,250,0.4); transition: all 0.2s; white-space: nowrap;
}
.wl-panel__share:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,109,250,0.5); }

@media (min-width: 540px) {
  .wl-panel { align-items: center; }
  .wl-panel__box { border-radius: 28px; max-height: 80vh; }
  .wl-panel__handle { display: none; }
}

.result-card__body { flex: 1; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.result-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.result-card__name { font-size: 14px; font-weight: 800; line-height: 1.3; }
.rc__steam-link {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-decoration: none; white-space: nowrap; transition: color 0.15s; flex-shrink: 0;
}
.rc__steam-link:hover { color: var(--accent); }

.result-card__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.rc__price-area { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }

.rc__price-main { display: flex; flex-direction: column; gap: 2px; }
.rc__our-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
.rc__our-price { font-size: 22px; font-weight: 900; color: var(--green); letter-spacing: -0.02em; }
.rc__orig-price { font-size: 11px; color: var(--text-dim); text-decoration: line-through; }
.rc__steam-disc { font-size: 10px; font-weight: 800; background: rgba(77,172,130,0.15); color: var(--green); padding: 2px 7px; border-radius: 5px; display: inline-block; margin-top: 2px; }

.rc__savings-block {
  display: flex; align-items: center; gap: 10px;
  background: rgba(77,172,130,0.1); border: 1px solid rgba(77,172,130,0.25);
  border-radius: 10px; padding: 8px 12px;
}
.rc__savings-pct { font-size: 20px; font-weight: 900; color: var(--green); }
.rc__savings-detail { display: flex; flex-direction: column; gap: 2px; }
.rc__savings-amt { font-size: 13px; font-weight: 700; color: var(--green); }
.rc__savings-vs { font-size: 11px; color: var(--text-muted); }

.rc__order-btn {
  background: var(--accent); color: #fff;
  border: none; border-radius: 10px; padding: 10px 20px;
  font-size: 13px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s; white-space: nowrap;
  flex-shrink: 0;
}
.rc__order-btn:hover { opacity: 0.88; transform: scale(1.03); }
.rc__unavail { font-size: 12px; color: #f59e0b; font-weight: 600; }
.rc__free { font-size: 16px; font-weight: 900; color: var(--accent); }
.rc__na { font-size: 12px; color: var(--text-dim); }

/* ── Order modal ── */
.order-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.82);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 999; backdrop-filter: blur(8px);
}
.order-modal.hidden { display: none; }
.order-modal__box {
  background: #0e0e16; border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px 28px 0 0; width: 100%; max-width: 520px;
  position: relative; overflow: hidden;
  animation: omSlideUp 0.32s cubic-bezier(0.34,1.1,0.64,1);
}
@keyframes omSlideUp { from { transform: translateY(60px); opacity: 0; } }
/* drag handle */
.order-modal__box::before {
  content: ''; display: block; width: 36px; height: 3px;
  background: rgba(255,255,255,0.1); border-radius: 2px;
  margin: 10px auto 0; position: relative; z-index: 3;
}
.order-modal__close {
  position: absolute; top: 8px; right: 12px; z-index: 10;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  color: rgba(255,255,255,0.6); font-size: 12px; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.order-modal__close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Hero — full bleed game art */
.order-modal__hero {
  position: relative; height: 200px;
  background: #111 center/cover no-repeat;
  background-position: top center;
}
.order-modal__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(14,14,22,0.85) 75%,
    rgba(14,14,22,1) 100%
  );
}
.order-modal__hero-content {
  position: absolute; bottom: 20px; left: 22px; right: 22px;
}
.order-modal__game {
  font-size: 22px; font-weight: 900; color: #fff;
  line-height: 1.15; text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 8px;
}
.order-modal__meta { display: flex; align-items: center; gap: 10px; }
.order-modal__price-badge {
  font-size: 20px; font-weight: 900; color: #4dac82;
  background: rgba(77,172,130,0.12); border: 1px solid rgba(77,172,130,0.25);
  border-radius: 8px; padding: 2px 10px; line-height: 1.5;
}
.order-modal__ua-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(77,172,130,0.7);
}

/* Body */
.order-modal__body { padding: 18px 20px 28px; }

/* Share card */
.om-share-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 14px 16px; margin-bottom: 14px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.om-share-card:hover { border-color: rgba(124,109,250,0.4); background: rgba(124,109,250,0.04); }
.om-share-card--copied { border-color: rgba(77,172,130,0.5) !important; background: rgba(77,172,130,0.05) !important; }
.om-share-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.om-share-card__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.om-share-card__hint { font-size: 10px; color: rgba(124,109,250,0.7); font-weight: 600; }
.om-share-card__url {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #a89cfc;
  overflow: hidden; margin-bottom: 8px;
}
.om-share-card__icon { flex-shrink: 0; color: #a89cfc; opacity: 0.7; }
.om-share-card__url span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.om-share-card__code { font-size: 11px; color: rgba(255,255,255,0.25); font-family: monospace; letter-spacing: 0.08em; padding-left: 22px; }

/* CTA button */
.om-copy-btn {
  width: 100%; padding: 15px; font-size: 15px; font-weight: 800;
  border-radius: 14px; margin-bottom: 16px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #7c6dfa 0%, #5a4fcf 100%);
  color: #fff; display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 24px rgba(124,109,250,0.35); transition: all 0.2s; font-family: inherit;
}
.om-copy-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,109,250,0.5); }
.om-copy-btn:active:not(:disabled) { transform: translateY(0); }
.om-copy-btn--success { background: linear-gradient(135deg, #4dac82 0%, #378a65 100%) !important; box-shadow: 0 4px 20px rgba(77,172,130,0.35) !important; }
.om-copy-btn:disabled { opacity: 0.45; cursor: default; }
.om-copy-btn__icon { font-size: 16px; }

/* Steps */
.om-how {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 16px; padding: 10px 12px;
  background: rgba(255,255,255,0.02); border-radius: 12px;
}
.om-how__step { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); }
.om-how__n {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(124,109,250,0.15); color: #a89cfc;
  font-size: 10px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.om-how__arr { color: rgba(255,255,255,0.15); font-size: 11px; }

/* Footer links */
.om-footer { display: flex; align-items: center; justify-content: center; gap: 12px; }
.om-footer__link { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.om-footer__link:hover { color: rgba(255,255,255,0.7); }
.om-footer__dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); }

@media (min-width: 540px) {
  .order-modal { align-items: center; }
  .order-modal__box { border-radius: 28px; max-width: 460px; }
  .order-modal__box::before { display: none; }
  .order-modal__hero { height: 220px; }
}

/* ── Wishlist section ── */
.wl-input-row { display: flex; gap: 12px; max-width: 760px; margin: 0 auto 12px; }
.wl-input {
  flex: 1; background: var(--bg); border: 1px solid var(--border2);
  border-radius: 14px; padding: 14px 18px; font-size: 14px; color: var(--text);
  font-family: inherit; outline: none; transition: border-color 0.2s;
}
.wl-input:focus { border-color: var(--accent); }
.wl-hint { font-size: 12px; color: var(--text-dim); text-align: center; }
.wl-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); border-radius: 12px; padding: 16px; color: #ef4444; font-size: 14px; text-align: center; margin-top: 16px; }

.wl-summary { margin-top: 24px; }
.wl-hero {
  display: flex; align-items: center; gap: 20px;
  background: rgba(77,172,130,0.1); border: 1px solid rgba(77,172,130,0.25);
  border-radius: 16px; padding: 20px 24px; margin-bottom: 20px;
}
.wl-hero__emoji { font-size: 40px; flex-shrink: 0; }
.wl-hero__title { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.wl-hero__amount { color: var(--green); }
.wl-hero__sub { font-size: 13px; color: var(--text-muted); }

.wl-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.wl-stat { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; }
.wl-stat--green .wl-stat__val { color: var(--green); }
.wl-stat--strike .wl-stat__val { text-decoration: line-through; color: var(--text-dim); }
.wl-stat__val { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.wl-stat__label { font-size: 11px; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.wl-games { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-bottom: 24px; }
.wl-game {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
}
.wl-game img { width: 100%; aspect-ratio: 231/87; object-fit: cover; }
.wl-game__name { font-size: 12px; font-weight: 700; padding: 8px 10px 4px; }
.wl-game__prices { display: flex; gap: 8px; align-items: center; padding: 0 10px 4px; }
.wl-game__ours { font-size: 13px; font-weight: 900; color: var(--green); }
.wl-game__theirs { font-size: 11px; color: var(--text-dim); text-decoration: line-through; }
.wl-game__save { display: inline-block; background: rgba(77,172,130,0.15); color: var(--green); font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 5px; margin: 0 10px 8px; }

.wl-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.wl-cta__note { font-size: 12px; color: var(--text-dim); }
.wl-share-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; font-size: 15px;
  box-shadow: 0 4px 28px rgba(124,109,250,0.4);
}
.wl-share-btn:disabled { opacity: 0.6; }
.wl-btn-label { font-weight: 800; }

@media (max-width: 600px) {
  .result-card__img-wrap { width: 100px; }
  .wl-stats { grid-template-columns: repeat(2,1fr); }
  .wl-input-row { flex-direction: column; }
}

/* Empty state */
.search-empty { text-align: center; padding: 40px 0; }
.search-empty__icon { font-size: 40px; margin-bottom: 12px; }
.search-empty__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.search-empty__sub { font-size: 13px; color: var(--text-muted); }

/* ── How it works ── */
.how { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps {
  display: flex; align-items: flex-start; gap: 0;
  max-width: 900px; margin: 0 auto;
}
.step { flex: 1; text-align: center; padding: 0 24px; position: relative; }
.step__connector {
  flex-shrink: 0; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border2));
  margin-top: 60px; position: relative;
}
.step__connector::after {
  content: '→'; position: absolute; right: -12px; top: -11px;
  color: var(--accent); font-size: 18px;
}
.step__num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 12px;
}
.step__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 20px;
  transition: all 0.3s;
}
.step:hover .step__icon { border-color: var(--accent); transform: scale(1.08); box-shadow: 0 0 24px rgba(124,109,250,0.2); }
.step__title { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.step__desc { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ── Trust strip ── */
.trust-strip { padding: 40px 0; border-top: 1px solid var(--border); }
.trust-strip__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item__icon { font-size: 28px; }
.trust-item__title { font-size: 14px; font-weight: 700; }
.trust-item__sub { font-size: 12px; color: var(--text-muted); }

/* ── Live Order Ticker ── */
.ticker-wrap {
  overflow: hidden; background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.ticker-track {
  display: flex; gap: 32px; width: max-content;
  animation: tickerScroll 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; flex-shrink: 0;
}
.ticker-item__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: dotPulse 2s ease-in-out infinite; }
.ticker-item__product { color: var(--text); }
.ticker-item__time { color: var(--text-dim); font-weight: 400; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--bg2); border-bottom: 1px solid var(--border); padding: 28px 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-badge { display: flex; align-items: center; gap: 12px; }
.trust-badge__icon { font-size: 26px; }
.trust-badge__title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.trust-badge__sub { font-size: 11px; color: var(--text-muted); }

/* ── Reviews ── */
.reviews-section {
  padding: 72px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}

/* Header row */
.reviews-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.reviews-head__rating { display: flex; flex-direction: column; gap: 10px; }
.reviews-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
}
.reviews-tag__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}
.reviews-head__score-row {
  display: flex; align-items: center; gap: 16px;
}
.reviews-score__num {
  font-size: 56px; font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.reviews-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.rstar { font-size: 20px; color: #f9a825; animation: starPop 0.4s cubic-bezier(.34,1.56,.64,1) both; }
.rstar--1 { animation-delay: 0.05s; }
.rstar--2 { animation-delay: 0.1s; }
.rstar--3 { animation-delay: 0.15s; }
.rstar--4 { animation-delay: 0.2s; }
.rstar--5 { animation-delay: 0.25s; }
@keyframes starPop {
  from { opacity: 0; transform: scale(0) rotate(-20deg); }
  to   { opacity: 1; transform: none; }
}
.reviews-head__sub { font-size: 13px; color: var(--text-muted); }
.reviews-head__sub span { font-weight: 800; color: var(--text); }

/* Right chips */
.reviews-head__chips { display: flex; flex-direction: column; gap: 8px; }
.reviews-chip {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.reviews-chip::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%234ade80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── Review card marquee ── */
.vouch-marquee-wrap {
  overflow: hidden;
  margin: 0 0 20px;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.vouch-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: vouchScroll 40s linear infinite;
}
.vouch-marquee-track:hover { animation-play-state: paused; }
@keyframes vouchScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Single review card in marquee */
.vouch-item {
  width: 300px; flex-shrink: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: default;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.vouch-item:hover {
  border-color: rgba(124,109,250,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.vouch-item__header { display: flex; align-items: center; gap: 10px; }
.vouch-item__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; background: var(--bg3);
}
.vouch-item__avatar-fallback {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}
.vouch-item__meta { flex: 1; min-width: 0; }
.vouch-item__name {
  font-size: 13px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vouch-item__platform {
  width: 14px; height: 14px; flex-shrink: 0;
  background: #5865f2; border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
}
.vouch-item__stars { color: #f9a825; font-size: 12px; letter-spacing: 1px; }
.vouch-item__date { font-size: 11px; color: var(--text-dim); flex-shrink: 0; }
.vouch-item__text {
  font-size: 13px; color: var(--text-muted); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

.vouch-powered {
  font-size: 11px; text-align: center; padding-bottom: 4px;
}
.vouch-powered a {
  color: var(--text-dim); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s;
}
.vouch-powered a:hover { color: var(--accent); }

/* Reviews responsive */
@media (max-width: 860px) {
  .reviews-inner { grid-template-columns: 1fr; gap: 32px; }
  .reviews-left { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px 32px; }
  .reviews-score__num { font-size: 52px; }
}
@media (max-width: 480px) {
  .reviews-left { flex-direction: column; align-items: flex-start; }
}

/* ── Why Trust Us ── */
.why-section {
  padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
}
.why-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.why-sub { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 10px; }
.why-sub strong { color: var(--text); }
.why-sub em { color: var(--text-muted); font-style: normal; }

.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-point__icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.why-point__title { font-size: 14px; font-weight: 800; margin-bottom: 3px; }
.why-point__sub { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.why-stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px; text-align: center;
  transition: border-color 0.2s;
}
.why-stat-card:hover { border-color: var(--border2); }
.why-stat__num {
  font-size: 36px; font-weight: 900; letter-spacing: -0.03em; display: inline;
}
.why-stat__sym { font-size: 22px; font-weight: 800; color: var(--accent); display: inline; }
.why-stat__label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.why-guarantee {
  grid-column: 1 / -1;
  background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 16px; padding: 20px; text-align: center;
}
.why-guarantee__icon { font-size: 32px; margin-bottom: 8px; }
.why-guarantee__title { font-size: 16px; font-weight: 900; margin-bottom: 6px; color: var(--green); }
.why-guarantee__sub { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Game Top-Ups section ── */
.games-section { padding-bottom: 80px; }

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  padding: 28px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  margin: 0 0 48px;
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: all 0.2s; flex-shrink: 0;
}
.marquee-item:hover { border-color: var(--accent); color: var(--text); transform: translateY(-2px); }
.marquee-item__icon { font-size: 20px; line-height: 1; }
.marquee-item__from { font-size: 11px; color: var(--green); font-weight: 800; margin-left: 4px; }

/* Preview grid */
.games-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.gpcard {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 16px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; text-decoration: none; color: inherit;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.gpcard:hover {
  transform: translateY(-5px);
  border-color: var(--gpcard-color, var(--border2));
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.gpcard__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; transition: transform 0.25s cubic-bezier(.22,1,.36,1);
}
.gpcard:hover .gpcard__icon { transform: scale(1.1) rotate(-5deg); }
.gpcard__name { font-size: 13px; font-weight: 700; line-height: 1.3; }
.gpcard__price { font-size: 13px; font-weight: 700; color: var(--green); }

.games-preview-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; text-align: center;
}
.games-preview-footer__note {
  font-size: 13px; color: var(--text-dim);
}

/* ── FAQ ── */
.faq { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s;
}
.faq__item[open] { border-color: rgba(124,109,250,0.4); }
.faq__q {
  padding: 18px 22px; font-weight: 700; font-size: 15px; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between; user-select: none;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--accent); }
.faq__q::marker { display: none; }
.faq__q::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--accent);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 22px 18px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── CTA section ── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 24px; padding: 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box__glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center top, rgba(124,109,250,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box__title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-box__sub { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }
.cta-box__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Side nav ── */
.side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 90;
  pointer-events: none;
}
.side-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
  cursor: pointer;
}
.side-nav__label {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.side-nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.side-nav__item:hover .side-nav__label { opacity: 1; transform: translateX(0); }
.side-nav__item:hover .side-nav__dot { background: var(--text-muted); transform: scale(1.3); }
.side-nav__item.active .side-nav__label { opacity: 1; transform: translateX(0); }
.side-nav__item.active .side-nav__dot {
  background: var(--accent);
  width: 10px; height: 10px;
  box-shadow: 0 0 10px rgba(124,109,250,0.6);
  border-color: transparent;
}
@media (max-width: 900px) { .side-nav { display: none; } }

/* ── Footer ── */
.footer { padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 48px; }
.footer__brand { max-width: 260px; }
.footer__tagline { color: var(--text-muted); font-size: 13px; margin-top: 12px; }
.footer__links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 4px; }
.footer__col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
}
.footer__bottom .container { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dim); flex-wrap: wrap; gap: 8px; }
.footer__bottom strong { color: var(--text-muted); }

/* ── How it works ── */
.howto-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.howto-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.howto-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.howto-step__num {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(124,109,250,0.1); border: 1px solid rgba(124,109,250,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--accent);
  margin: 0 auto 16px; letter-spacing: 0.04em;
}
.howto-step__icon { font-size: 30px; margin-bottom: 12px; line-height: 1; }
.howto-step__title { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.howto-step__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 220px; margin: 0 auto; }
.howto-arrow {
  flex-shrink: 0;
  color: var(--text-dim);
  margin-top: 10px;
  padding-top: 4px;
}

/* Modal Discord steps */
.modal__discord-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: rgba(88,101,242,0.08);
  border: 1px solid rgba(88,101,242,0.2);
  border-radius: 12px;
}
.modal__discord-step {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  white-space: nowrap;
}
.modal__discord-step__n {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(88,101,242,0.3); color: #fff;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.modal__discord-sep { color: var(--text-dim); font-size: 13px; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
  z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 24px; padding: 36px; max-width: 440px; width: 100%;
  position: relative; text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.modal-overlay.active .modal { transform: none; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg4); border: 1px solid var(--border2);
  color: var(--text-muted); width: 34px; height: 34px; border-radius: 10px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal__close:hover { color: var(--text); border-color: var(--text-muted); }
.modal__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--bg4); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; margin: 0 auto 14px;
}
.modal__badge { margin-bottom: 12px; min-height: 24px; }
.modal__title { font-size: 22px; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.01em; }
.modal__desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.65; }
.modal__price-row { display: flex; align-items: center; justify-content: space-between; background: var(--bg4); border-radius: 12px; padding: 14px 18px; margin-bottom: 20px; }
.modal__price { font-size: 32px; font-weight: 900; color: var(--green); letter-spacing: -0.02em; }
.modal__delivery { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.modal__buy { margin-bottom: 16px; }
.modal__trust { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-stats { grid-template-columns: repeat(4, 1fr); }
  .why-guarantee { grid-column: 1 / -1; }
}
/* ── Tablet (nav collapses, content adapts) ── */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__inner { height: 62px; }
  .hero { padding: 120px 0 80px; }
  .hero__title { font-size: clamp(36px, 8vw, 58px); }
  .hero__sub { font-size: 15px; }
  .hero__actions { gap: 10px; }
  .hero__stats { padding: 18px 20px; }
  .hero__stat { padding: 0 18px; }
  .hero__stat-val { font-size: 22px; }
  .howto-section { padding: 32px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .games-preview-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { flex-wrap: wrap; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; max-width: 400px; }
  .step { padding: 0; }
  .step__connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, var(--accent), var(--border2)); }
  .step__connector::after { content: '↓'; top: auto; bottom: -14px; right: -11px; }
  .float-card { display: none; }
  .trust-bar__inner { gap: 24px; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .search-games-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: clamp(32px, 9vw, 48px); margin-bottom: 16px; }
  .hero__sub { font-size: 14px; max-width: 100%; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn { justify-content: center; }
  .hero__stats { flex-direction: column; gap: 0; padding: 0; background: none; border: none; }
  .hero__stat { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; flex-direction: row; justify-content: space-between; gap: 8px; }
  .hero__stat:last-child { border-bottom: none; }
  .hero__stat-divider { display: none; }
  .hero__stat-val { font-size: 24px; }
  .trust-strip__inner { gap: 28px; }
  .cta-box { padding: 36px 20px; }
  .footer__inner { flex-direction: column; gap: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .games-preview-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .howto-wrap { flex-direction: column; align-items: center; gap: 24px; }
  .howto-arrow { transform: rotate(90deg); margin: 0; }
  .section__title { font-size: clamp(24px, 6vw, 36px); }
  .container { padding: 0 16px; }
}
