/* ============================================================
   NextThings Studio — Playful Game Studio Theme
   Tokens follow DESIGN.md §2–§7
   ============================================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* ---------- RESET & VARIABLES ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg: #FFFAF5;
  --surface: #FFFFFF;
  --surface-alt: #FFF5ED;
  --surface-hover: #FFF0E4;

  /* Borders */
  --border: #F0E4D8;
  --border-hover: #FFD0B8;

  /* Text */
  --text: #2D2A28;
  --text-secondary: #6B6560;
  --text-tertiary: #9E9690;

  /* Accent */
  --accent: #FF4470;
  --accent-hover: #E6395E;
  --accent-soft: rgba(255, 68, 112, 0.08);

  /* Secondary accents */
  --amber: #FFB830;
  --mint: #10B981;

  /* RGB for rgba() */
  --bg-rgb: 255, 250, 245;
  --accent-rgb: 255, 68, 112;

  /* Radii */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

[id] { scroll-margin-top: 80px; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--text);
}
.nav-logo:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-soft);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Decorative blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.10;
}
.hero-blob-1 {
  width: 420px; height: 420px;
  background: var(--accent);
  top: -10%; left: -5%;
  animation: float 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 340px; height: 340px;
  background: var(--amber);
  bottom: 10%; right: -8%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: var(--mint);
  top: 40%; left: 60%;
  animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title .highlight {
  display: inline-block;
  color: var(--accent);
  text-shadow: 3px 3px 0 var(--amber);
}

.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              background 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.4);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.btn-outline:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 8px 16px;
}
.btn-ghost:hover {
  background: var(--accent-soft);
}

/* ---------- SCROLL HINT ---------- */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  animation: bounce-hint 2s ease-in-out infinite;
}
.scroll-hint svg {
  color: var(--text-tertiary);
}

@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--surface-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title .accent-word {
  color: var(--accent);
}

.section-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- FEATURED GAME BLOCKS ---------- */
.game-featured-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.3s ease;
}
.game-featured-full:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08);
}
.game-featured-full:focus-within {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.game-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.game-featured-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.game-featured-visual {
  background: linear-gradient(135deg, #FFF5ED 0%, #FFEDE0 50%, #FFF0E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 380px;
  border-right: 1px solid var(--border);
}

.game-hero-img {
  width: auto;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
}

.game-featured-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-genre {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.game-featured-info h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  color: var(--text);
}

.game-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.game-featured-info > p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.game-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.highlight-item {
  text-align: center;
}
.highlight-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.highlight-item span {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
  display: block;
}

.game-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s ease,
              border-color 0.2s ease,
              background 0.2s ease,
              box-shadow 0.2s ease;
}
.store-badge:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.12);
  text-decoration: none;
}
.store-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- SCREENSHOTS STRIP ---------- */
.screenshots-label {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
}

.screenshots-strip {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.screenshots-strip::-webkit-scrollbar {
  height: 5px;
}
.screenshots-strip::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 5px;
}
.screenshots-strip::-webkit-scrollbar-thumb {
  background: var(--text-tertiary);
  border-radius: 5px;
}

.ss-item {
  flex: 0 0 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s ease;
  scroll-snap-align: start;
}
.ss-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.ss-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s ease,
              box-shadow 0.3s var(--ease-out);
}
.value-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.value-item h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.value-item p {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin: 0;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s ease,
              box-shadow 0.3s var(--ease-out);
}
.about-stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.asc-number {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent);
}

.asc-label {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s ease,
              box-shadow 0.3s var(--ease-out);
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card p,
.contact-card a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-card a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-links a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: border-color 0.2s ease,
              background 0.2s ease,
              color 0.2s ease;
}
.social-links a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.social-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  font-family: 'Sora', sans-serif;
}
.footer-brand p {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
  max-width: 260px;
}

.footer-links h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--text-tertiary);
}
.footer-bottom a {
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}
.footer-bottom a:hover { color: var(--accent); }

/* ---------- PRIVACY PAGE ---------- */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.privacy-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.privacy-content .last-updated {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 40px;
}
.privacy-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
}
.privacy-content p,
.privacy-content li {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-blob { display: none; }
}

/* ---------- RESPONSIVE: Tablet ---------- */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease-out),
                opacity 0.3s var(--ease-out);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 16px;
    font-size: 16px;
  }
  .nav-toggle { display: flex; }

  .game-featured-body {
    grid-template-columns: 1fr;
  }
  .game-featured-visual {
    min-height: 240px;
    padding: 32px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .game-featured-info {
    padding: 28px;
  }
  .game-featured-info h3 {
    font-size: 26px;
  }
  .game-highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .ss-item { flex: 0 0 200px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---------- RESPONSIVE: Mobile ---------- */
@media (max-width: 600px) {
  .section { padding: 64px 0; }

  .hero-title {
    font-size: 36px;
  }
  .hero-blob { opacity: 0.06; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .game-featured-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 5px 12px;
  }
  .game-featured-visual {
    min-height: 200px;
    padding: 24px;
  }
  .game-hero-img {
    max-width: 180px;
  }
  .game-featured-info h3 {
    font-size: 22px;
  }
  .game-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .screenshots-label {
    margin-top: 32px;
  }
  .ss-item { flex: 0 0 160px; }

  .values-grid { grid-template-columns: 1fr; }

  .about-visual { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand p { max-width: 100%; }
}
