/* ═══════════════════════════════════════════════════════
   aimrena — Global Stylesheet
   Design system: dark gamer / futuristic
   ═══════════════════════════════════════════════════════ */

:root {
  --bg-0:       #080c11;
  --bg-1:       #0d1117;
  --bg-2:       #161b22;
  --bg-3:       #1c2128;
  --bg-4:       #21262d;
  --border:     #30363d;
  --border-hover:#58a6ff66;

  --text-1:     #f0f6fc;
  --text-2:     #c9d1d9;
  --text-3:     #8b949e;

  --accent:     #58a6ff;
  --accent-glow:rgba(88,166,255,0.35);
  --accent-2:   #f85149;
  --accent-2g:  rgba(248,81,73,0.35);
  --green:      #3fb950;
  --green-glow: rgba(63,185,80,0.35);
  --purple:     #8b5cf6;
  --purple-glow:rgba(139,92,246,0.35);
  --orange:     #e3853a;

  --radius:     8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);

  --max-w: 1180px;
  --nav-h: 68px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg-1);
  color: var(--text-2);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display:block; max-width:100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--accent), #4184e4);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 18px var(--accent-glow);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text-1);
  background: var(--bg-4);
  transform: translateY(-1px);
}

.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-1);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

/* ── Animated brand wordmark ──────────────────────────── */
@keyframes lb-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lb-glow {
  0%, 100% { text-shadow: 0 0 10px #3d8bff, 0 0 22px #2d6ad6; }
  50%       { text-shadow: 0 0 18px #3d8bff, 0 0 40px #2d6ad6; }
}
@keyframes lb-glow-svg {
  0%, 100% { filter: drop-shadow(0 0 3px #3d8bff); }
  50%       { filter: drop-shadow(0 0 7px #3d8bff) drop-shadow(0 0 14px #2d6ad6); }
}
.logo-brand {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  font-family: 'Century Gothic', 'Century Gothic Paneuropean', 'Apple Gothic', 'Trebuchet MS', sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.lb {
  display: inline-block;
  opacity: 0;
}
.lb-white {
  color: #f4f7fc;
  animation: lb-in 0.4s calc(var(--i, 0) * 58ms) cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.lb-blue {
  color: #3d8bff;
  animation:
    lb-in 0.4s calc(var(--i, 0) * 58ms) cubic-bezier(0.34, 1.56, 0.64, 1) both,
    lb-glow 3s calc(var(--i, 0) * 58ms + 1.2s) ease-in-out infinite;
}
.lb-i {
  display: inline-flex;
  align-items: center;
  margin: 0 0.04em;
  filter: drop-shadow(0 0 3px #3d8bff);
  animation:
    lb-in 0.4s 58ms cubic-bezier(0.34, 1.56, 0.64, 1) both,
    lb-glow-svg 3s 1.26s ease-in-out infinite;
}
.lb-dia {
  display: block;
  height: 0.65em;
  width: calc(0.65em * 0.72);
  transform: skewX(-12deg);
}
.nav-inner .lb-i {
  position: relative;
  top: 1px;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-1); background: var(--bg-4); }
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-2);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--bg-4); color: var(--text-1); }
.mobile-menu .btn-primary { margin-top: 8px; justify-content: center; }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.grid-overlay {
  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;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.crosshair-anim {
  position: absolute;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.crosshair-anim::before,
.crosshair-anim::after {
  content: '';
  position: absolute;
  background: var(--accent);
  opacity: 0.25;
}
.crosshair-anim::before { width:2px; height:100%; left:50%; top:0; transform:translateX(-50%); }
.crosshair-anim::after  { width:100%; height:2px; top:50%; left:0; transform:translateY(-50%); }

.hero > * { position: relative; z-index: 1; }
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(88,166,255,0.1);
  border: 1px solid rgba(88,166,255,0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
  width: fit-content;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:0.4; }
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-1);
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #b084ff, var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-1);
}
.stat-num small { font-size: 14px; color: var(--accent); margin-left: 2px; }
.stat-label { font-size: 12px; color: var(--text-3); }
.stat-sep { width:1px; height:40px; background:var(--border); }

/* Device mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.device-screen {
  width: 340px;
  height: 220px;
  background: var(--bg-0);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(88,166,255,0.15),
    0 0 60px rgba(88,166,255,0.08),
    inset 0 0 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.device-screen::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(45deg, rgba(88,166,255,0.04) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(88,166,255,0.04) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(88,166,255,0.04) 30px);
}
.screen-content {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  padding: 12px;
}
.screen-target {
  position:absolute;
  width:30px; height:30px;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  border:1.5px solid rgba(88,166,255,0.5);
  border-radius:50%;
}
.screen-target::before,
.screen-target::after {
  content:'';
  position:absolute;
  background:rgba(88,166,255,0.5);
}
.screen-target::before { width:1.5px; height:200%; left:50%; top:-50%; transform:translateX(-50%); }
.screen-target::after  { height:1.5px; width:200%; top:50%; left:-50%; transform:translateY(-50%); }

.screen-hit {
  position:absolute;
  width:16px; height:16px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background: var(--accent-2);
  opacity:0;
}
.screen-hit.hit-anim {
  animation: hit-pop 2s ease-out forwards;
}
@keyframes hit-pop {
  0%   { opacity:1; transform:translate(-50%,-50%) scale(0); box-shadow:0 0 0 0 var(--accent-2g); }
  20%  { opacity:1; transform:translate(-50%,-50%) scale(1.4); box-shadow:0 0 0 10px transparent; }
  40%  { opacity:1; transform:translate(-50%,-50%) scale(1); }
  70%  { opacity:0.7; }
  100% { opacity:0; transform:translate(-50%,-50%) scale(1); }
}
.screen-label {
  font-size:10px;
  letter-spacing:2px;
  color: var(--green);
  text-transform:uppercase;
  z-index:1;
  text-shadow:0 0 8px var(--green);
}
.screen-coords {
  font-size:11px;
  font-family: 'Courier New', monospace;
  color: var(--accent);
  z-index:1;
  margin-top:2px;
}
.device-stand {
  width:80px; height:8px;
  background: var(--bg-3);
  border-radius:0 0 4px 4px;
  border: 1px solid var(--border);
  border-top:none;
}

/* ══════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}
.section-alt {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(88,166,255,0.1);
  border: 1px solid rgba(88,166,255,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.1s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 16px;
  align-items: center;
}
.step-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity:0;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.step-card:hover::before { opacity:1; }
.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  color: var(--accent);
  opacity: 0.8;
}
.step-icon svg { width:100%; height:100%; }
.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 12px;
}
.step-card p { font-size: 14px; color: var(--text-3); line-height: 1.7; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 24px;
}
.step-connector::after {
  content: '→';
  font-size: 28px;
  color: var(--border);
}

/* ══════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width:24px; height:24px; }
.accent-blue  { background:rgba(88,166,255,0.12);  color:var(--accent);  }
.accent-green { background:rgba(63,185,80,0.12);   color:var(--green);   }
.accent-purple{ background:rgba(139,92,246,0.12);  color:var(--purple);  }
.accent-orange{ background:rgba(227,133,58,0.12);  color:var(--orange);  }
.accent-red   { background:rgba(248,81,73,0.12);   color:var(--accent-2);}
.feature-card h4 { font-size:16px; font-weight:600; color:var(--text-1); margin-bottom:8px; }
.feature-card p  { font-size:14px; color:var(--text-3); line-height:1.7; }

/* ══════════════════════════════════════════════════════
   GAMES
   ══════════════════════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.game-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}
.game-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,0.4); border-color:var(--accent); }
.game-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.striker-bg {
  background: linear-gradient(145deg, #0a0f1a 0%, #0d1a2d 40%, #05101a 100%);
}
.striker-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(88,166,255,0.2) 0%, transparent 70%);
}
.tower-bg {
  background: linear-gradient(145deg, #0a1a0a 0%, #0d2d1a 40%, #051a0a 100%);
}
.tower-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(63,185,80,0.2) 0%, transparent 70%);
}
.soon-bg {
  background: linear-gradient(145deg, var(--bg-3) 0%, var(--bg-2) 100%);
}
.game-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: linear-gradient(to top, rgba(8,12,17,0.95) 0%, rgba(8,12,17,0.6) 60%, transparent 100%);
}
.game-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.badge-soon { background: var(--bg-4); border: 1px solid var(--border); color: var(--text-3); }
.game-card h3 { font-size: 20px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.game-card p  { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-bottom: 14px; }
.game-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  padding: 3px 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-3);
}
.game-card.featured { min-height: 380px; }
.game-card.coming-soon { opacity: 0.7; }

/* ══════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════ */
.section-newsletter {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}
.newsletter-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.newsletter-glow {
  position:absolute;
  top:-80px; left:-80px;
  width:300px; height:300px;
  background:radial-gradient(circle, rgba(88,166,255,0.12) 0%, transparent 70%);
  pointer-events:none;
}
.newsletter-content h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -1px;
  margin: 12px 0;
}
.newsletter-content p {
  color: var(--text-3);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.newsletter-form .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.newsletter-form input {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-1);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}
.newsletter-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.newsletter-form input::placeholder { color: var(--text-3); }
.form-note {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}
.newsletter-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.newsletter-success h3 { font-size: 20px; color: var(--text-1); }
.newsletter-success p  { font-size: 14px; color: var(--text-3); }
.success-icon {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 20px var(--green-glow);
}
.success-icon.large { width:64px; height:64px; font-size:28px; }

.newsletter-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.nl-stat-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.nl-stat-num {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.nl-stat-label { font-size: 14px; color: var(--text-3); }
.nl-features { display: flex; flex-direction: column; gap: 10px; }
.nl-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.nl-check {
  width: 22px; height: 22px;
  background: rgba(63,185,80,0.15);
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-0);
  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 .logo { font-size: 24px; margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.7; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-3); }
.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--text-1); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-disclaimer { font-size: 12px !important; }
.footer-mini { padding: 24px 0; }
.footer-mini .footer-bottom { border-top: none; padding-top: 0; justify-content: center; }
.footer-mini .footer-bottom a { color: var(--text-3); margin: 0 4px; }
.footer-mini .footer-bottom a:hover { color: var(--text-1); }

/* ══════════════════════════════════════════════════════
   PAGE HERO (sub pages)
   ══════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-content { max-width: 640px; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -1.5px;
  margin: 10px 0 12px;
}
.page-hero p { font-size: 16px; color: var(--text-3); }

/* ══════════════════════════════════════════════════════
   SHOP
   ══════════════════════════════════════════════════════ */
.shop-notice {
  background: rgba(88,166,255,0.07);
  border-bottom: 1px solid rgba(88,166,255,0.2);
  padding: 14px 0;
}
.notice-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.notice-icon { color: var(--accent); flex-shrink:0; }
.link-accent { color: var(--accent); text-decoration: underline; }

.shop-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--text-2); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--accent); transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.3); }
.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 10px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
.badge-popular { background: linear-gradient(135deg, var(--accent-2), #c0392b); }
.product-img-wrap {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product-img-placeholder {
  color: var(--text-3);
  opacity: 0.5;
}
.product-img-label {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { font-size: 17px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; }
.product-info p  { font-size: 13px; color: var(--text-3); line-height: 1.65; margin-bottom: 12px; flex: 1; }
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.product-specs span {
  padding: 2px 8px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-3);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 11px; color: var(--text-3); }
.price { font-size: 22px; font-weight: 700; color: var(--text-1); }
.price-note { font-size: 11px; color: var(--text-3); }

/* ══════════════════════════════════════════════════════
   ACCOUNT / AUTH
   ══════════════════════════════════════════════════════ */
.auth-page { background: var(--bg-0); }
.auth-main {
  min-height: calc(100vh - var(--nav-h) - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 40px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo .logo { font-size: 28px; }
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--bg-4);
  padding: 4px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.auth-tab {
  padding: 9px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.auth-tab.active { background: var(--bg-2); color: var(--text-1); box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.auth-tab:disabled { opacity: 0.4; cursor: not-allowed; }

.coming-soon-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: var(--bg-3);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-3);
}
.coming-soon-icon { color: var(--accent); opacity: 0.7; }
.coming-soon-box h3 { font-size: 16px; color: var(--text-2); font-weight: 600; }
.coming-soon-box p  { font-size: 14px; }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.label-link { font-size: 12px; color: var(--accent); font-weight: 400; }
.label-link:hover { text-decoration: underline; }
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password] {
  padding: 11px 14px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-1);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group input::placeholder { color: var(--text-3); }
.input-pw-wrap { position: relative; }
.input-pw-wrap input { padding-right: 42px; }
.pw-toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 2px;
  transition: var(--transition);
}
.pw-toggle:hover { color: var(--text-1); }
.pw-strength {
  height: 3px;
  background: var(--bg-4);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.pw-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}
.pw-strength-label { font-size: 11px; margin-top: 3px; height: 14px; }

.form-check { flex-direction: row; align-items: flex-start; }
.check-label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
  cursor: pointer;
  line-height: 1.5;
}
.check-label input { flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
}
.auth-divider::before,
.auth-divider::after { content:''; flex:1; height:1px; background:var(--border); }

.btn-social {
  gap: 10px;
  border: 1px solid var(--border);
}

.auth-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.auth-success h2 { font-size: 22px; color: var(--text-1); }
.auth-success p   { font-size: 14px; color: var(--text-3); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .game-card.featured { grid-column: 1 / -1; min-height: 260px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-box { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }

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

  .auth-card { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .newsletter-form .form-row { flex-direction: column; }
  .newsletter-form .btn-primary { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════════════
   BROWSER CONTROL SECTION
   ══════════════════════════════════════════════════════ */
.section-control {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.control-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.control-text .section-tag { margin-bottom: 16px; }
.control-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.control-text p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 28px;
}
.control-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.control-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.control-check {
  width: 24px; height: 24px;
  background: rgba(63,185,80,0.15);
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
}

/* Phone mockup */
.control-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(88,166,255,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.phone-mockup {
  width: 220px;
  background: var(--bg-0);
  border: 2px solid var(--border);
  border-radius: 32px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(88,166,255,0.1),
    0 24px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.phone-notch {
  width: 60px; height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: var(--bg-2);
  border-radius: 20px;
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-ui-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-ui-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s infinite;
}
.phone-ui-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
}
.phone-ui-game {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}
.phone-ui-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; }
.phone-ui-gamename { font-size: 14px; font-weight: 600; color: var(--accent); margin-top: 2px; }
.phone-ui-players {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phone-ui-player {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--bg-3);
  font-size: 12px;
  color: var(--text-3);
  border: 1px solid transparent;
}
.phone-ui-player.active {
  border-color: rgba(88,166,255,0.3);
  color: var(--text-1);
  background: rgba(88,166,255,0.08);
}
.phone-ui-avatar { font-size: 14px; }
.phone-ui-score { margin-left: auto; font-weight: 600; color: var(--accent); font-size: 11px; }
.phone-ui-btn {
  background: linear-gradient(135deg, var(--accent), #4184e4);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 9px;
  border-radius: 8px;
  box-shadow: 0 0 12px var(--accent-glow);
}

@media (max-width: 1024px) {
  .control-split { grid-template-columns: 1fr; gap: 40px; }
  .control-visual { order: -1; }
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ══════════════════════════════════════════════════════ */
.legal-content {
  max-width: 720px;
}
.legal-block {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child {
  border-bottom: none;
}
.legal-block h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 14px;
}
.legal-block h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  margin: 18px 0 8px;
}
.legal-block p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-list {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.7;
  list-style: disc;
}
