/* ===== AllInOnePlayHub — Gaming Portal ===== */
:root {
  --bg: #0a0a14;
  --bg-2: #11111d;
  --bg-3: #1a1a2e;
  --card: #16162a;
  --card-hover: #1d1d3d;
  --border: #252544;
  --border-bright: #3a3a5c;

  --text: #ffffff;
  --text-soft: #c8c8e0;
  --text-mute: #7878a0;

  --neon-green: #00ff88;
  --neon-pink: #ff3d7f;
  --neon-cyan: #00d4ff;
  --neon-orange: #ff9500;
  --neon-purple: #b84dff;
  --neon-yellow: #ffea00;

  --grad-primary: linear-gradient(135deg, #00d4ff 0%, #b84dff 100%);
  --grad-hot: linear-gradient(135deg, #ff3d7f 0%, #ff9500 100%);
  --grad-fresh: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  --grad-dark: linear-gradient(135deg, #16162a 0%, #0a0a14 100%);

  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle animated gradient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 77, 255, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(255, 61, 127, 0.04) 0%, transparent 50%);
}

a { color: var(--neon-cyan); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--neon-green); }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ===== NAVIGATION ===== */
nav.site-nav {
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo:hover { color: var(--text); }

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
}
.logo-text { color: var(--text); }
.logo-text .accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--neon-cyan); }
.nav-links a.active {
  color: var(--neon-cyan);
}

.nav-search {
  display: flex;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  gap: 8px;
  flex-shrink: 0;
}
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  width: 180px;
}
.nav-search input::placeholder { color: var(--text-mute); }

.menu-toggle {
  display: none;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

.btn-hot {
  background: var(--grad-hot);
  color: white;
}
.btn-hot:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 61, 127, 0.4);
  color: white;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-color: var(--neon-cyan);
}

.btn-large {
  padding: 16px 32px;
  font-size: 15px;
}

/* ===== Hero ===== */
.hero {
  padding: 60px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .gradient-2 {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stats .stat .num {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 28px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats .stat .lbl {
  font-size: 12px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Hero visual: arcade machine / floating game cards */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  width: 200px;
  height: 260px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-bright);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: var(--card);
}
.floating-card .ic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 80px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.floating-card .name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 2;
}
.floating-card .cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-top: 4px;
}

.fc-1 {
  background: linear-gradient(135deg, #1a0033 0%, #4a0080 100%);
  transform: rotate(-12deg) translateX(-110px) translateY(20px);
  animation: floatA 7s ease-in-out infinite;
}
.fc-2 {
  background: linear-gradient(135deg, #001a33 0%, #004080 100%);
  transform: rotate(0) translateY(-30px);
  z-index: 3;
  animation: floatB 6s ease-in-out infinite;
}
.fc-3 {
  background: linear-gradient(135deg, #330011 0%, #80003d 100%);
  transform: rotate(12deg) translateX(110px) translateY(20px);
  animation: floatC 8s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: rotate(-12deg) translateX(-110px) translateY(20px); }
  50% { transform: rotate(-12deg) translateX(-110px) translateY(0px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(0) translateY(-30px); }
  50% { transform: rotate(0) translateY(-50px); }
}
@keyframes floatC {
  0%, 100% { transform: rotate(12deg) translateX(110px) translateY(20px); }
  50% { transform: rotate(12deg) translateX(110px) translateY(0px); }
}

/* ===== Sections ===== */
.section {
  padding: 60px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.01em;
}
.section-title .accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text-mute);
  margin-top: 6px;
  font-size: 15px;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
  text-decoration: none;
}
.section-link:hover { color: var(--neon-green); }
.section-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.2s ease;
}
.section-link:hover::after { transform: translateX(4px); }

/* ===== Genre filter pills ===== */
.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.genre-pill {
  padding: 10px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.genre-pill:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}
.genre-pill.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
}

/* ===== Game cards grid ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.games-grid.featured {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.game-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.2);
  color: var(--text);
}

.game-thumb {
  aspect-ratio: 4/3;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.game-thumb .ic {
  font-size: 80px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}
.game-card:hover .game-thumb .ic { transform: scale(1.1) rotate(-3deg); }

.game-thumb .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-new { background: var(--neon-green); color: var(--bg); }
.badge-hot { background: var(--neon-pink); color: white; }
.badge-pop { background: var(--neon-orange); color: var(--bg); }

.game-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-info .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mute);
}
.game-info .cat {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--neon-cyan);
}
.game-info .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--neon-yellow);
}

/* Game card thumbnail backgrounds */
.thumb-puzzle    { background: linear-gradient(135deg, #1a0040 0%, #4a0080 100%); }
.thumb-arcade    { background: linear-gradient(135deg, #002240 0%, #004488 100%); }
.thumb-skill     { background: linear-gradient(135deg, #401a00 0%, #884400 100%); }
.thumb-casual    { background: linear-gradient(135deg, #00401a 0%, #007744 100%); }
.thumb-strategy  { background: linear-gradient(135deg, #400022 0%, #880044 100%); }
.thumb-action    { background: linear-gradient(135deg, #2b0040 0%, #6600aa 100%); }
.thumb-classic   { background: linear-gradient(135deg, #1a1a40 0%, #444488 100%); }
.thumb-word      { background: linear-gradient(135deg, #003d40 0%, #006688 100%); }

/* ===== Genre browse cards ===== */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.genre-card {
  padding: 30px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.genre-card:hover {
  transform: translateY(-4px);
  color: white;
}
.genre-card .gc-ic {
  font-size: 36px;
  margin-bottom: 12px;
}
.genre-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}
.genre-card .count {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* ===== Page header ===== */
.page-header {
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.page-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  margin-bottom: 12px;
}
.page-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-header h1 .gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header .lede {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 720px;
}

/* ===== Game detail page ===== */
.game-page {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  margin-bottom: 60px;
}

.game-stage {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.game-canvas-wrap {
  background: #000;
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-canvas-wrap canvas,
.game-canvas-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.game-canvas-wrap.html-game {
  background: var(--bg-2);
  aspect-ratio: auto;
  min-height: 600px;
  padding: 24px;
}

.game-toolbar {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--bg-2);
}
.game-toolbar .game-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.game-toolbar .controls {
  display: flex;
  gap: 8px;
}
.tool-btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}
.tool-btn:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

.game-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-card h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 14px;
}
.sidebar-card .meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-card .meta-row:last-child { border-bottom: none; }
.sidebar-card .meta-row .lbl { color: var(--text-mute); }
.sidebar-card .meta-row .val { color: var(--text); font-weight: 600; }

.controls-list { list-style: none; }
.controls-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.controls-list li:last-child { border-bottom: none; }
.kbd {
  display: inline-block;
  padding: 3px 8px;
  background: var(--bg-3);
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--neon-cyan);
  min-width: 28px;
  text-align: center;
}

.game-description {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 40px;
}
.game-description h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  margin-bottom: 16px;
}
.game-description p { color: var(--text-soft); margin-bottom: 16px; line-height: 1.7; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about p {
  margin-top: 16px;
  color: var(--text-mute);
  max-width: 320px;
  font-size: 14px;
}
.footer-grid h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
  color: var(--text-mute);
  font-size: 14px;
}
.footer-grid a:hover { color: var(--neon-cyan); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-mute);
}

/* ===== Long-form prose (about, policies) ===== */
.prose {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}
.prose p { margin-bottom: 1.3em; }
.prose h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--text);
  font-size: 24px;
  margin: 40px 0 16px;
}
.prose h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--text);
  font-size: 18px;
  margin: 28px 0 12px;
}
.prose ul, .prose ol { margin: 0 0 1.3em 1.5em; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
}
.contact-info p { color: var(--text-soft); margin-bottom: 24px; }
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.info-item .ic {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.info-item .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); }
.info-item a, .info-item .val { color: var(--text); font-weight: 500; font-size: 15px; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--neon-cyan);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; }
  .game-page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links { display: none; }
  .nav-search input { width: 120px; }
  .menu-toggle { display: grid; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-2);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 640px) {
  .container, .nav-inner { padding-left: 18px; padding-right: 18px; }
  .nav-search { display: none; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .game-thumb .ic { font-size: 60px; }
  .game-info h3 { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .form-row.row2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .floating-card { width: 150px; height: 200px; }
  .floating-card .ic { font-size: 60px; }
  .fc-1 { transform: rotate(-12deg) translateX(-80px) translateY(20px); }
  .fc-3 { transform: rotate(12deg) translateX(80px) translateY(20px); }
}
