
:root {
  --bg-body: #f3f4ff;
  --bg-hero-shell: radial-gradient(circle at 0 0, #ffe3aa 0, transparent 55%), radial-gradient(circle at 100% 0, #c6a4ff 0, transparent 55%), linear-gradient(180deg, #f7f3ff 0, #f1f5ff 50%, #f9f4ff 100%);
  --bg-section-light: #f6f6ff;
  --bg-section-alt: #f1f3ff;
  --text-main: #151528;
  --text-sub: #6b6f8a;
  --accent: #5b6dff;
  --accent-soft: #a76bff;
  --accent-strong: #2730ff;
  --accent-gold: #ffb44a;
  --border-soft: rgba(18, 22, 60, 0.08);
  --shadow-hero: 0 26px 80px rgba(7, 10, 40, 0.55);
  --shadow-card: 0 18px 46px rgba(10, 12, 38, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --transition-fast: 0.18s ease-out;
  --max-width: 1160px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC",
    "Microsoft YaHei", sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(243, 244, 255, 0.95),
    rgba(243, 244, 255, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 16px;
  background: conic-gradient(from 210deg, #ffb44a, #ff7aa3, #5b6dff, #a76bff, #ffb44a);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: 0 16px 40px rgba(45, 32, 139, 0.55);
  position: relative; overflow: hidden;
}
.brand-logo::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #ffeab0 0, #ff9ec0 36%, #5b6dff 100%);
  opacity: 0.8;
}
.brand-logo span { position: relative; z-index: 1; }
.brand-text-main { font-weight: 700; font-size: 18px; letter-spacing: 0.03em; }
.brand-text-sub { font-size: 11px; color: var(--text-sub); }

.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; }
.nav-link { position: relative; padding-bottom: 4px; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width var(--transition-fast);
}
.nav-link:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap; gap: 8px;
}
.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-soft));
  color: #fff; box-shadow: 0 14px 34px rgba(73, 87, 227, 0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 20px 46px rgba(73, 87, 227, 0.65); }
.btn-ghost {
  border-color: rgba(91, 109, 255, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
}
.btn-ghost:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(26, 32, 92, 0.15); }
.btn-play-icon {
  width: 14px; height: 14px; border-radius: 999px;
  border: 1.4px solid rgba(255, 255, 255, 0.9);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; background: rgba(255, 255, 255, 0.18);
}
.nav-toggle {
  display: none; width: 32px; height: 32px;
  border-radius: 999px; border: 1px solid rgba(21, 23, 38, 0.08);
  background: rgba(255, 255, 255, 0.8);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span {
  width: 16px; height: 2px; border-radius: 999px;
  background: var(--text-main); position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 2px;
  border-radius: inherit; background: inherit;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* SECTIONS */
.section-shell {
  padding: 40px 0 70px;
  position: relative;
  z-index: 1;
}
.section-shell.hero-shell {
  background: var(--bg-hero-shell);
  box-shadow: 0 32px 80px rgba(7, 10, 50, 0.45);
  margin-bottom: 0;
  z-index: 30;
  min-height: calc(100vh - 70px);
  padding: 32px 0 60px;
  display: flex;
  align-items: center;
}
.section-shell.hero-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 16px;
  background: linear-gradient(
    to bottom,
    rgba(27, 26, 75, 0.18),
    rgba(27, 26, 75, 0.0)
  );
  opacity: 0.25;
  pointer-events: none;
}
.section-shell.section-alt {
  background: radial-gradient(circle at top, rgba(143, 161, 255, 0.22) 0, transparent 60%), var(--bg-section-light);
  box-shadow: 0 -8px 30px rgba(14, 18, 60, 0.08) inset;
}
.section-shell.section-muted {
  background: radial-gradient(circle at bottom right, rgba(173, 144, 255, 0.16) 0, transparent 55%), var(--bg-section-alt);
}
.section-inner {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(10, 12, 38, 0.15);
  padding: 26px 24px 26px;
}
.section-inner.flat { background: transparent; box-shadow: none; padding: 0 2px; }
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 22px;
}
.section-title { font-size: 20px; font-weight: 700; }
.section-sub { font-size: 13px; color: var(--text-sub); max-width: 420px; }

/* HERO */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: 42px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(91, 109, 255, 0.25);
  font-size: 11px; color: var(--accent-strong);
  margin-bottom: 16px; box-shadow: 0 10px 24px rgba(18, 24, 92, 0.1);
}
.dot { width: 6px; height: 6px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-soft)); }
.hero-title {
  font-size: clamp(30px, 3.2vw, 36px); line-height: 1.1;
  letter-spacing: 0.01em; margin-bottom: 16px;
}
.hero-title span {
  background: linear-gradient(120deg, var(--accent-strong), var(--accent-soft));
  -webkit-background-clip: text; color: transparent;
}
.hero-subtitle {
  font-size: 15px; line-height: 1.7; color: var(--text-sub); margin-bottom: 18px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag-chip {
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 23, 38, 0.06);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(19, 23, 70, 0.08);
}
.tag-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffe390 0, #ffb44a 40%, #ff7a9b 100%);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.hero-note { font-size: 11px; color: var(--text-sub); display: flex; align-items: center; gap: 6px; }
.hero-note-badge {
  padding: 2px 8px; border-radius: 999px;
  background: rgba(255, 180, 74, 0.16);
  font-size: 10px; color: #b0701b; font-weight: 600;
}

.hero-card {
  position: relative; border-radius: var(--radius-xl);
  padding: 18px 20px 16px;
  background:
    radial-gradient(circle at 0% 0%, #ffe199 0, #ff9fcb 35%, #6d7bff 75%, #151a4a 100%);
  box-shadow: var(--shadow-hero);
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero-card::before {
  content: ""; position: absolute; inset: -40% -5% auto; height: 60%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 55%, rgba(255, 255, 255, 0.18));
  opacity: 0.5; mix-blend-mode: screen; pointer-events: none;
}
.hero-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.hero-card-badge {
  padding: 4px 12px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 11px; backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.hero-card-logo { display: flex; align-items: center; gap: 10px; }
.hero-icon {
  width: 40px; height: 40px; border-radius: 14px;
  background: url("assets/icon-antistress.png") center/cover no-repeat;
  box-shadow: 0 10px 26px rgba(12, 0, 22, 0.65);
  flex-shrink: 0;
}
.hero-game-title { font-weight: 700; font-size: 15px; }
.hero-game-sub { font-size: 11px; opacity: 0.9; }
.hero-screenshot {
  margin: 4px -2px 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: radial-gradient(circle at 50% 0, rgba(255,255,255,.25) 0, transparent 55%);
  padding: 4px;
  display: block;
}
.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
.hero-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; font-size: 11px; position: relative; z-index: 1;
}
.hero-rating { display: flex; align-items: center; gap: 4px; }
.hero-stars { font-size: 12px; }
.hero-platforms { display: flex; align-items: center; gap: 6px; }
.hero-badge-pill {
  padding: 2px 8px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.33);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

/* Hero bottom scroll arrow */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: radial-gradient(circle at 30% 0, rgba(255,255,255,0.9) 0, rgba(91,109,255,0.4) 55%, rgba(20,20,60,0.85) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(5, 8, 40, 0.7);
  z-index: 5;
}
.hero-scroll::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid rgba(255,255,255,.95);
  border-bottom: 2px solid rgba(255,255,255,.95);
  transform: rotate(-45deg) translateY(-1px);
}
.hero-scroll:hover {
  transform: translateX(-50%) translateY(2px);
  box-shadow: 0 20px 46px rgba(5, 8, 40, 0.9);
}

/* FILTER & GAMES */
.games-filter {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-sub);
}
.filter-label {
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600; font-size: 10px;
}
.filter-pill {
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(91, 109, 255, 0.26);
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-sub);
  box-shadow: 0 8px 20px rgba(14, 18, 60, 0.08);
}
.filter-pill-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}
.filter-pill.is-active {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  color: #fff; border-color: transparent;
  box-shadow: 0 12px 26px rgba(79, 93, 229, 0.6);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px 16px 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
  overflow: hidden;
  isolation: isolate;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 55%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}
.game-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffb44a, #ff7aa3, #5b6dff, #a76bff);
  transform-origin: center;
  transform: scaleX(0);
  opacity: 0.9;
  transition: transform 220ms ease-out;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(10, 12, 38, 0.28);
  border-color: rgba(91, 109, 255, 0.4);
}
.game-card:hover::before { opacity: 1; }
.game-card:hover::after { transform: scaleX(1); }

.game-pin {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #d0d4ff 60%, #6a6fe5 100%);
  box-shadow: 0 6px 14px rgba(22, 18, 80, 0.45);
  z-index: 2;
}
.game-pin::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 0, #e6e9ff 0, #9aa0ff 90%);
}
.game-pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}

.game-card-top {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 10px;
}

.game-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe390, #ff7aa3);
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(116, 30, 90, 0.35);
}
.game-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.game-title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.game-meta-pill {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(22, 24, 60, 0.06);
  border: 1px solid rgba(91, 109, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(37, 42, 92, 0.9);
  white-space: nowrap;
}
.game-subline {
  font-size: 11px;
  color: rgba(107, 111, 138, 0.9);
  margin-bottom: 4px;
}
.game-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}
.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 8px;
  gap: 6px;
  border-top: 1px dashed rgba(18, 22, 60, 0.12);
}
.game-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.game-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(91, 109, 255, 0.06);
  color: #3a3d63;
  border: 1px solid rgba(91, 109, 255, 0.15);
}
.game-tag--anti {
  background: radial-gradient(circle at 0 0, #ffe4d4 0, #ffc7df 40%, #f1f2ff 100%);
}
.game-tag--puzzle {
  background: radial-gradient(circle at 0 0, #ddf4ff 0, #e3e2ff 40%, #faf6ff 100%);
}
.game-tag--driving {
  background: radial-gradient(circle at 0 0, #def6e6 0, #e2f0ff 40%, #fafcff 100%);
}
.btn-game {
  font-size: 11px;
  padding: 7px 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(79, 93, 229, 0.5);
}
.btn-game span { font-size: 10px; opacity: 0.92; }
.btn-game:hover { transform: translateY(-1px); box-shadow: 0 16px 32px rgba(79, 93, 229, 0.6); }

/* FEATURES / ABOUT / SUPPORT / FOOTER (简化注释, 保留样式) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(10, 12, 38, 0.08);
}
.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffe390 0, #ffb44a 30%, #ff7a9b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 8px;
}
.feature-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-text {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.6;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
}
.about-main {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(255, 180, 74, 0.15) 0, transparent 60%), rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 180, 74, 0.4);
  box-shadow: 0 18px 40px rgba(10, 12, 38, 0.16);
}
.about-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  font-size: 12px;
  color: var(--text-sub);
}
.about-points strong {
  font-weight: 600;
  color: var(--text-main);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.stat-chip {
  border-radius: 18px;
  padding: 9px 10px 8px;
  color: #151528;
  font-size: 11px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 12, 38, 0.18);
}
.stat-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.7) 0, transparent 55%);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.stat-chip-inner {
  position: relative;
  z-index: 1;
}
.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.86;
}
.stat-value {
  font-weight: 700;
  font-size: 15px;
  margin-top: 2px;
}
.stat-chip--games {
  background: linear-gradient(135deg, #ffe3b3, #ffb66e);
}
.stat-chip--downloads {
  background: linear-gradient(135deg, #c8e5ff, #7da8ff);
}
.stat-chip--focus {
  background: linear-gradient(135deg, #e7dbff, #b88cff);
}

.about-side {
  border-radius: 20px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at top, rgba(167, 107, 255, 0.18) 0, transparent 70%), #15182f;
  color: #f6f3ff;
  box-shadow: 0 20px 46px rgba(7, 8, 30, 0.6);
  border: 1px solid rgba(151, 138, 255, 0.7);
}
.about-side-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.about-timeline {
  margin-top: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 10px;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-timeline-item {
  position: relative;
  padding-left: 6px;
}
.about-timeline-dot {
  position: absolute;
  left: -11px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #ffe390 0, #ff7aa3 60%, #5b6dff 100%);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.about-side-foot {
  margin-top: 12px;
  font-size: 10px;
  opacity: 0.8;
}

.support-card {
  border-radius: 26px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}
.support-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}
.support-list {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.support-label {
  font-weight: 600;
  color: var(--text-main);
}
.support-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}

.site-footer {
  border-top: 1px solid rgba(21, 23, 38, 0.06);
  padding: 18px 0 26px;
  background: #f4f3ff;
}
.footer-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--text-sub);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-link:hover {
  color: var(--accent-strong);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    max-width: 440px;
    margin: 6px auto 0;
  }
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .support-card {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .section-shell {
    padding: 30px 0 56px;
  }
  .section-inner {
    padding: 20px 16px 22px;
  }
  .games-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
