﻿/* ============================================
   CUSTOMI GAME STUDIO - Playful Universe Design
   Colorful, child-friendly theme matching the logo
   Logo colors: Pink, Blue, Orange, Green
   ============================================ */

/* --- Variables --- */
:root {
  --bg-deep: #050510;
  --bg-surface: #0a0a1a;
  --bg-card: rgba(15, 15, 35, 0.6);
  --accent-1: #FF69B4;
  --accent-2: #4A90E2;
  --accent-3: #FF9500;
  --accent-4: #4CAF50;
  --accent-glow: #FF69B4;
  --text-primary: #f0f0ff;
  --text-secondary: rgba(240, 240, 255, 0.6);
  --text-muted: rgba(240, 240, 255, 0.35);
  --border: rgba(255, 105, 180, 0.12);
  --border-hover: rgba(255, 105, 180, 0.3);
  --glass-bg: rgba(15, 15, 35, 0.4);
  --glass-border: rgba(255, 255, 255, 0.06);
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; }
ul, ol { list-style: none; }
::selection { background: rgba(255, 105, 180, 0.3); color: var(--text-primary); }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent-1); border-radius: 10px; }

/* --- Layout --- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 140px 0; position: relative; z-index: 2; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); line-height: 1.1; }
.hero-gradient {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%;
  animation: gradient-dance 6s ease infinite;
}
@keyframes gradient-dance {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Animated Background Universe --- */
.bg-universe {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; overflow: hidden; pointer-events: none;
}

#nebula-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* Morphing Grid Background */
.grid-morph {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,105,180,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,105,180,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: grid-morph-anim 20s ease-in-out infinite;
  transform-origin: center;
}
@keyframes grid-morph-anim {
  0%, 100% { transform: perspective(800px) rotateX(0deg) scale(1); opacity: 0.4; }
  25% { transform: perspective(800px) rotateX(2deg) scale(1.02); opacity: 0.6; }
  50% { transform: perspective(800px) rotateX(0deg) scale(1.05); opacity: 0.3; }
  75% { transform: perspective(800px) rotateX(-2deg) scale(1.02); opacity: 0.5; }
}

/* Liquid Orbs - Aurora Glow */
.liquid-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.15;
  animation: aurora-drift 20s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px; top: -150px; right: -50px;
  background: radial-gradient(circle, var(--accent-1), transparent);
  animation-delay: 0s;
}
.orb-2 {
  width: 450px; height: 450px; bottom: -100px; left: -80px;
  background: radial-gradient(circle, var(--accent-2), transparent);
  animation-delay: -7s;
}
.orb-3 {
  width: 350px; height: 350px; top: 30%; left: 40%;
  background: radial-gradient(circle, var(--accent-3), transparent);
  animation-delay: -14s; opacity: 0.06;
}
@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(80px, -60px) scale(1.2) rotate(5deg); }
  50% { transform: translate(-50px, 40px) scale(0.85) rotate(-3deg); }
  75% { transform: translate(40px, 70px) scale(1.1) rotate(2deg); }
}

/* Energy Field - Aurora Layers */
.energy-field {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255,105,180,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 50% 30% at 70% 80%, rgba(74,144,226,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(255,150,200,0.03) 0%, transparent 100%);
  animation: aurora-breathe 8s ease-in-out infinite;
}
@keyframes aurora-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: all 0.5s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(30px) saturate(1.5); -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px; z-index: 1001;
  text-decoration: none; transition: all 0.3s var(--ease);
}
.logo:hover { transform: scale(1.03); }

/* Logo "C" mark - Pembe büyük C harfi */
.logo-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #FF69B4 0%, #FF1493 60%, #E91E8B 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: visible;
  box-shadow: 0 4px 20px rgba(255,105,180,0.35), inset 0 2px 4px rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.logo-c {
  font-family: 'Space Grotesk', var(--font-display), sans-serif;
  font-size: 1.8rem; font-weight: 900; color: #fff;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.15);
  line-height: 1; position: relative; z-index: 2;
}
/* Küçük dinozor emoji - C harfinin üstünde */
.logo-dino {
  position: absolute; top: -6px; right: -4px;
  font-size: 0.75rem; z-index: 3;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  animation: logo-dino-bounce 3s ease-in-out infinite;
}
@keyframes logo-dino-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
/* Küçük yıldızlar - C kutusunun etrafında */
.logo-sparkle {
  position: absolute; font-size: 0.45rem; color: #FFD700; z-index: 3;
  animation: logo-twinkle 2s ease-in-out infinite;
}
.logo-sparkle-1 { top: -3px; left: 2px; animation-delay: 0s; }
.logo-sparkle-2 { bottom: -2px; right: 6px; animation-delay: 0.7s; }
.logo-sparkle-3 { top: 6px; right: -6px; animation-delay: 1.4s; }
@keyframes logo-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Logo Text - CUSTOMI (beyaz) GAME (sarı) */
.logo-text-group {
  display: flex; flex-direction: column; line-height: 1; gap: 0px;
  position: relative;
}
.logo-customi-wrap {
  position: relative;
  display: inline-flex;
  height: 2.2rem;
}
.logo-customi-char {
  font-family: 'Fredoka One', 'Bubblegum Sans', 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: #FFFFFF; letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.1);
  position: relative; z-index: 2;
  display: inline-block;
  will-change: transform;
}
.logo-game-wrap {
  position: relative;
  height: 1.6rem;
  margin-top: 2px;
}
.logo-game-char {
  font-family: 'Fredoka One', 'Bubblegum Sans', 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: #FFD700; letter-spacing: 0.06em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,215,0,0.15);
  display: inline-block;
  position: absolute;
  transition: none;
  will-change: transform;
}

/* Küçük yaratıcılık ikonları (roket vb) */
.logo-icons {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.55rem; margin-left: -2px;
}

/* Footer Logo - biraz daha küçük */
.footer-logo .logo-mark { width: 40px; height: 40px; border-radius: 12px; }
.footer-logo .logo-c { font-size: 1.5rem; }
.footer-logo .logo-dino { font-size: 0.65rem; top: -5px; right: -3px; }
.footer-logo .logo-customi-char { font-size: 1.4rem; }
.footer-logo .logo-game-wrap { height: 1.2rem; position: relative; }
.footer-logo .logo-game-char {
  font-size: 0.85rem; position: relative !important;
  display: inline-block !important; left: auto !important;
}
.footer-logo .logo-sparkle { display: none; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 20px; font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary); letter-spacing: 0.03em;
  border-radius: 10px; transition: all 0.3s var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.active {
  color: var(--accent-1);
  background: rgba(255,105,180,0.08);
}

/* CTA Button */
.nav-cta {
  padding: 10px 26px; font-size: 0.85rem; font-weight: 600;
  border-radius: 10px; position: relative; overflow: hidden;
  margin-left: 8px; display: inline-flex; align-items: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 10px; z-index: 0;
  transition: all 0.4s var(--ease);
}
.nav-cta:hover .cta-bg { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255,105,180,0.4); }
.cta-text { position: relative; z-index: 1; color: white; }

/* Mobile Menu */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.4s var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(5,5,16,0.98); backdrop-filter: blur(40px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease); z-index: 999;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu .nav-link { font-size: 1.3rem; padding: 16px 40px; }
.mobile-menu .nav-cta { font-size: 1.1rem; padding: 16px 44px; margin-left: 0; margin-top: 10px; }

/* ========== BUTTONS ========== */

/* Hologram Button */
.btn-hologram {
  position: relative; display: inline-flex; align-items: center;
  padding: 16px 36px; border-radius: 12px; overflow: hidden;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.4s var(--ease);
}
.btn-hologram-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 12px; z-index: 0;
  transition: all 0.5s var(--ease);
}
.btn-hologram:hover .btn-hologram-bg {
  box-shadow: 0 0 40px rgba(255,105,180,0.5), 0 0 80px rgba(74,144,226,0.2);
  transform: scale(1.02);
}
.btn-hologram::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  z-index: 1; transition: left 0.7s ease;
}
.btn-hologram:hover::before { left: 100%; }
.btn-hologram-content {
  position: relative; z-index: 2; color: white;
  display: flex; align-items: center; gap: 10px;
}

/* Glass Button */
.btn-glass {
  position: relative; display: inline-flex; align-items: center;
  padding: 16px 36px; border-radius: 12px; overflow: hidden;
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  color: var(--text-primary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease);
}
.btn-glass:hover {
  border-color: var(--border-hover);
  background: rgba(255,105,180,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,105,180,0.1);
}
.btn-glass-shimmer {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,105,180,0.1), transparent);
  transition: left 0.6s ease;
}
.btn-glass:hover .btn-glass-shimmer { left: 100%; }

/* Store Badge */
.store-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  background: linear-gradient(135deg, rgba(30, 30, 60, 0.9), rgba(20, 20, 45, 0.95));
  border: 2px solid rgba(255, 105, 180, 0.25);
  border-radius: 16px; backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease); cursor: pointer;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.store-badge:hover {
  border-color: var(--accent-1);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255,105,180,0.25), 0 0 20px rgba(255,105,180,0.1);
  background: linear-gradient(135deg, rgba(40, 20, 50, 0.95), rgba(25, 25, 55, 0.98));
}
.store-icon {
  font-size: 2.2rem;
  filter: brightness(1.3) saturate(1.2);
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
}
.store-text { text-align: left; }
.store-small {
  font-size: 0.65rem; color: rgba(240, 240, 255, 0.7);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500;
}
.store-large {
  font-size: 1.1rem; font-weight: 700; color: #ffffff;
  text-shadow: 0 0 8px rgba(255,255,255,0.1);
}
.store-badge.coming-soon { opacity: 0.55; cursor: default; position: relative; }
.store-badge.coming-soon:hover {
  transform: none; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-color: rgba(255, 105, 180, 0.25);
  background: linear-gradient(135deg, rgba(30, 30, 60, 0.9), rgba(20, 20, 45, 0.95));
}
.coming-label {
  position: absolute; top: -10px; right: -10px;
  background: linear-gradient(135deg, var(--accent-3), #f97316);
  color: var(--bg-deep); font-size: 0.6rem; font-weight: 800;
  padding: 4px 12px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}
.store-badges { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px; z-index: 2; overflow: hidden;
}

/* Hero Video Background */
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%) scale(1.1);
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.9);
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 16, 0.6) 0%,
    rgba(5, 5, 16, 0.3) 40%,
    rgba(5, 5, 16, 0.4) 70%,
    rgba(5, 5, 16, 0.85) 100%
  );
  z-index: 1;
}
.hero .wrap { position: relative; z-index: 2; }

.hero-matrix {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* Hero Content */
.hero-content { position: relative; z-index: 3; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px 8px 12px;
  background: rgba(255,105,180,0.08);
  border: 1px solid rgba(255,105,180,0.15);
  border-radius: 100px; margin-bottom: 32px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  position: relative;
}
.badge-pulse::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--accent-2);
  animation: badge-ping 2s ease-out infinite;
}
@keyframes badge-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}
.badge-text {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-2);
}

/* Hero Title with data-text for glitch/depth effect */
.hero-title { margin-bottom: 28px; }
.title-line {
  display: block; font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  position: relative;
}
.title-line::after {
  content: attr(data-text);
  position: absolute; left: 2px; top: 2px; z-index: -1;
  opacity: 0.06;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 480px; margin-bottom: 40px; line-height: 1.8;
}
.highlight-text {
  color: var(--accent-2); font-weight: 500;
}

/* Hero CTA Group */
.hero-cta-group { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

/* Hero Stats */
.hero-stats {
  display: flex; gap: 40px; padding-top: 36px;
  border-top: 1px solid rgba(255,105,180,0.1);
}
.stat-block { position: relative; }
.stat-number {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px;
}
.stat-bar {
  width: 100%; height: 2px; margin-top: 8px;
  background: rgba(255,105,180,0.1); border-radius: 2px; overflow: hidden;
}
.stat-bar::after {
  content: ''; display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 2px; transition: width 2s var(--ease);
}
.stat-block.animated .stat-bar::after { width: 100%; }

/* ========== HERO 3D SCENE ========== */
.hero-scene {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  perspective: 1200px;
}
.scene-3d {
  position: relative; width: 400px; height: 400px;
  transform-style: preserve-3d;
}

/* Hero Game Image */
.hero-game-image {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 440px; height: 440px;
  z-index: 5;
  animation: hero-img-float 4s ease-in-out infinite;
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24);
  box-shadow:
    0 0 30px rgba(255, 107, 157, 0.5),
    0 0 60px rgba(192, 132, 252, 0.4),
    0 12px 48px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.hero-game-image::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24);
  filter: blur(16px);
  opacity: 0.6;
  z-index: -1;
  animation: border-glow-pulse 3s ease-in-out infinite;
}
.hero-game-image .game-screenshot {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
@keyframes hero-img-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}
@keyframes border-glow-pulse {
  0%, 100% { opacity: 0.6; filter: blur(12px); }
  50% { opacity: 0.9; filter: blur(16px); }
}

/* Holographic Cards */
.holo-card {
  position: absolute; padding: 18px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px; backdrop-filter: blur(20px);
  transition: all 0.5s var(--ease);
  z-index: 5;
}
.holo-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,105,180,0.3), rgba(74,144,226,0.1), rgba(255,105,180,0.1));
  z-index: -1; opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.holo-card:hover::before { opacity: 1; }
.holo-card:hover { transform: translateZ(30px) scale(1.05); }
.holo-glow {
  position: absolute; inset: -20px; border-radius: 30px;
  background: radial-gradient(circle, rgba(255,105,180,0.1), transparent 70%);
  z-index: -2; opacity: 0; transition: opacity 0.5s;
}
.holo-card:hover .holo-glow { opacity: 1; }

.card-1 { top: 0; right: 20px; animation: float-orbit-1 12s ease-in-out infinite; }
.card-2 { bottom: 30px; left: -10px; animation: float-orbit-2 14s ease-in-out infinite; }
.card-3 { top: 60%; right: -20px; animation: float-orbit-3 10s ease-in-out infinite; }

@keyframes float-orbit-1 {
  0%, 100% { transform: translate(0, 0) rotateY(0deg); }
  25% { transform: translate(-10px, -20px) rotateY(5deg); }
  50% { transform: translate(5px, -10px) rotateY(-3deg); }
  75% { transform: translate(-5px, 10px) rotateY(2deg); }
}
@keyframes float-orbit-2 {
  0%, 100% { transform: translate(0, 0) rotateX(0deg); }
  33% { transform: translate(15px, -15px) rotateX(5deg); }
  66% { transform: translate(-10px, 10px) rotateX(-3deg); }
}
@keyframes float-orbit-3 {
  0%, 100% { transform: translate(0, 0) rotateZ(0deg); }
  50% { transform: translate(-15px, -20px) rotateZ(3deg); }
}

.holo-content { display: flex; align-items: center; gap: 12px; }
.holo-icon { font-size: 1.5rem; }
.holo-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; }
.holo-desc { font-size: 0.7rem; color: var(--text-muted); }

/* Floating Game Board */
.floating-board {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  width: 220px; height: 220px; padding: 14px;
  background: var(--glass-bg);
  border: 1px solid rgba(255,105,180,0.2);
  border-radius: 18px; backdrop-filter: blur(30px);
  box-shadow: 0 0 60px rgba(255,105,180,0.1), 0 30px 80px rgba(0,0,0,0.5);
  z-index: 10;
  animation: board-levitate 6s ease-in-out infinite;
}
@keyframes board-levitate {
  0%, 100% { transform: translate(-50%, -50%) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translate(-50%, -52%) rotateX(-3deg) rotateY(5deg); }
}

.board-cell {
  background: rgba(255,105,180,0.04); border: 1px solid rgba(255,105,180,0.08);
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  user-select: none; transition: all 0.3s var(--ease);
}
.board-cell:hover {
  background: rgba(255,105,180,0.1);
  border-color: rgba(255,105,180,0.25);
  transform: scale(1.08);
}
.board-cell.x {
  color: var(--accent-1);
  background: rgba(255,105,180,0.1);
  border-color: rgba(255,105,180,0.3);
  text-shadow: 0 0 20px rgba(255,105,180,0.6);
}
.board-cell.o {
  color: var(--accent-2);
  background: rgba(74,144,226,0.1);
  border-color: rgba(74,144,226,0.3);
  text-shadow: 0 0 20px rgba(74,144,226,0.6);
}
.board-cell.win {
  animation: cell-win 0.6s ease-in-out;
  box-shadow: 0 0 30px rgba(255,105,180,0.4);
}
@keyframes cell-win {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Orbit Rings */
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,105,180,0.06);
  transform-style: preserve-3d;
}
.ring-1 {
  width: 300px; height: 300px;
  margin: -150px 0 0 -150px;
  animation: orbit-spin-1 25s linear infinite;
}
.ring-2 {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border-color: rgba(74,144,226,0.04);
  animation: orbit-spin-2 35s linear infinite reverse;
}
.ring-3 {
  width: 450px; height: 450px;
  margin: -225px 0 0 -225px;
  border-color: rgba(245,158,11,0.03);
  animation: orbit-spin-3 45s linear infinite;
}
.orbit-ring::after {
  content: ''; position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  top: -3px; left: 50%; margin-left: -3px;
}
.ring-1::after { background: var(--accent-1); box-shadow: 0 0 12px var(--accent-1); }
.ring-2::after { background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }
.ring-3::after { background: var(--accent-3); box-shadow: 0 0 12px var(--accent-3); }

@keyframes orbit-spin-1 { to { transform: rotateX(60deg) rotateZ(360deg); } }
@keyframes orbit-spin-2 { to { transform: rotateX(45deg) rotateY(360deg); } }
@keyframes orbit-spin-3 { to { transform: rotateY(60deg) rotateZ(360deg); } }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-1);
  background: rgba(255,105,180,0.06);
  border: 1px solid rgba(255,105,180,0.12);
  margin-bottom: 24px;
}
.tag-icon { font-size: 0.9rem; }
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ========== FEATURED SECTION ========== */
.featured-grid {
  display: flex; flex-wrap: wrap; gap: 60px; align-items: flex-start; justify-content: center;
}
.featured-visual {
  flex: 0 0 260px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
}
.featured-content {
  flex: 1 1 400px;
  min-width: 0;
}

/* Featured Game Image - Rainbow Animation */
.featured-game-image {
  position: relative;
  width: 260px;
  max-height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24);
  background-size: 300% 300%;
  animation: featured-img-tilt 6s ease-in-out infinite, rainbow-border-spin 4s linear infinite;
  transition: transform 0.3s ease;
  box-shadow:
    0 0 20px rgba(255, 107, 157, 0.4),
    0 0 40px rgba(96, 165, 250, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.3);
}
.featured-game-image::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 24px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24);
  background-size: 300% 300%;
  animation: rainbow-border-spin 4s linear infinite, glow-pulse 3s ease-in-out infinite;
  filter: blur(14px);
  opacity: 0.6;
  z-index: -1;
}
.featured-game-image:hover {
  transform: scale(1.05);
}
.featured-screenshot {
  width: 100%;
  max-height: 492px;
  height: auto;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
@keyframes featured-img-tilt {
  0%, 100% { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
  25% { transform: perspective(800px) rotateY(-3deg) rotateX(2deg); }
  50% { transform: perspective(800px) rotateY(0deg) rotateX(-2deg); }
  75% { transform: perspective(800px) rotateY(3deg) rotateX(2deg); }
}
@keyframes rainbow-border-spin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; filter: blur(20px); }
  50% { opacity: 0.9; filter: blur(28px); }
}

.feature-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 32px;
}
.feature-card {
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px; backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transform: scaleX(0); transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-wrap { margin-bottom: 14px; }
.feature-icon { font-size: 1.8rem; }
.feature-card h3 {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 600; margin-bottom: 8px;
}
.feature-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.featured-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ========== STEPS SECTION ========== */
.steps-flow {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.step-card {
  position: relative; padding: 40px 32px 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px; backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.step-number {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, rgba(255,105,180,0.08), rgba(74,144,226,0.05));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.step-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.step-content h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; margin-bottom: 10px;
}
.step-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

.step-connector {
  display: none; /* We'll use CSS gradient connectors between cards instead */
}

/* ========== SCREENSHOTS GALLERY ========== */
.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.screenshot-item {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  background: var(--bg-surface);
  border: none;
  transition: all 0.4s var(--ease);
}
/* Neon snake border animation */
.screenshot-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(
    90deg,
    transparent,
    #FF6B9D,
    #C084FC,
    #60A5FA,
    #34D399,
    transparent
  );
  background-size: 400% 400%;
  animation: neon-snake-move 4s linear infinite;
  z-index: -1;
}
/* Power glow behind cards */
.screenshot-item::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(192, 132, 252, 0.25) 0%,
    rgba(96, 165, 250, 0.15) 40%,
    transparent 70%
  );
  z-index: -2;
  animation: power-glow 3s ease-in-out infinite alternate;
}
.screenshot-item:nth-child(2n)::before { animation-delay: -1s; }
.screenshot-item:nth-child(3n)::before { animation-delay: -2s; }
.screenshot-item:nth-child(4n)::before { animation-delay: -0.5s; }
.screenshot-item:nth-child(5n)::before { animation-delay: -1.5s; }
.screenshot-item:nth-child(2n)::after { animation-delay: -0.8s; }
.screenshot-item:nth-child(3n)::after { animation-delay: -1.6s; }

.screenshot-item:hover {
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}
.screenshot-item:hover::before {
  animation-duration: 2s;
  background: linear-gradient(
    90deg,
    transparent,
    #FF6B9D,
    #FBBF24,
    #34D399,
    #60A5FA,
    #C084FC,
    transparent
  );
  background-size: 400% 400%;
}
.screenshot-item:hover::after {
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 157, 0.35) 0%,
    rgba(192, 132, 252, 0.25) 30%,
    rgba(96, 165, 250, 0.15) 50%,
    transparent 70%
  );
}
.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
@keyframes neon-snake-move {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}
@keyframes power-glow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.02); }
}

/* ========== BATTLE SECTION ========== */
.battle-showcase {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
}

.battle-grid-container {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}
.battle-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.grid-cell {
  aspect-ratio: 1;
  background: rgba(255,105,180,0.03);
  border: 1px solid rgba(255,105,180,0.06);
  border-radius: 4px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.grid-cell:hover { background: rgba(255,105,180,0.08); }
.grid-cell.p1 {
  background: rgba(255,105,180,0.3);
  border-color: rgba(255,105,180,0.5);
  box-shadow: inset 0 0 8px rgba(255,105,180,0.2), 0 0 8px rgba(255,105,180,0.1);
}
.grid-cell.p2 {
  background: rgba(74,144,226,0.3);
  border-color: rgba(74,144,226,0.5);
  box-shadow: inset 0 0 8px rgba(74,144,226,0.2), 0 0 8px rgba(74,144,226,0.1);
}
.grid-overlay {
  position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(5,5,16,0.3) 100%);
  pointer-events: none;
}

.battle-features { display: flex; flex-direction: column; gap: 16px; }
.battle-feature {
  padding: 20px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px; backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.battle-feature:hover {
  border-color: var(--border-hover);
  background: rgba(255,105,180,0.04);
}
.bf-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.bf-emoji { font-size: 1.3rem; }
.bf-header h4 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
}
.battle-feature p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

.tournament-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; margin-top: 8px;
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.12);
  border-radius: 14px; font-size: 0.85rem; font-weight: 600;
  color: var(--accent-3);
}
.tournament-icon { font-size: 1.3rem; }

/* Battle Screenshots - Electric Animation */
.battle-screenshots {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.battle-screenshot-item {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  background: var(--bg-surface);
}
/* Electric pulsating border */
.battle-screenshot-item::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    #FFD700 35%,
    #FF6B9D 45%,
    #FF00FF 55%,
    #00FFFF 65%,
    transparent 70%
  );
  background-size: 600% 600%;
  animation: electric-pulse 3s ease-in-out infinite;
  z-index: -1;
  opacity: 0.9;
}
/* Energy wave glow */
.battle-screenshot-item::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.3) 0%,
    rgba(255, 107, 157, 0.2) 30%,
    rgba(255, 0, 255, 0.15) 50%,
    rgba(0, 255, 255, 0.1) 70%,
    transparent 90%
  );
  z-index: -2;
  animation: energy-wave 4s ease-in-out infinite;
  filter: blur(15px);
}
.battle-screenshot-item:nth-child(2)::before { animation-delay: -1.5s; }
.battle-screenshot-item:nth-child(2)::after { animation-delay: -2s; }

.battle-screenshot-item:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
.battle-screenshot-item:hover::before {
  animation-duration: 1.5s;
  opacity: 1;
  background: linear-gradient(
    45deg,
    transparent 20%,
    #FFD700 25%,
    #FF6B9D 35%,
    #FF00FF 45%,
    #00FFFF 55%,
    #34D399 65%,
    transparent 75%
  );
}
.battle-screenshot-item:hover::after {
  opacity: 1;
  animation-duration: 2s;
}
.battle-screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@keyframes electric-pulse {
  0%, 100% {
    background-position: 0% 50%;
    transform: scale(1);
  }
  25% {
    background-position: 50% 0%;
    transform: scale(1.01);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1);
  }
  75% {
    background-position: 50% 100%;
    transform: scale(0.99);
  }
}
@keyframes energy-wave {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
  }
}

/* ========== PRIVACY SECTION ========== */
.privacy-section { text-align: center; }
.privacy-container {
  max-width: 660px; margin: 0 auto;
  padding: 60px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px; backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.privacy-icon-large { font-size: 3rem; margin-bottom: 24px; }
.privacy-container h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px;
}
.privacy-main {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 28px;
}
.privacy-points {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 32px;
}
.privacy-point {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(46,213,115,0.05);
  border: 1px solid rgba(46,213,115,0.12);
  border-radius: 100px; font-size: 0.82rem; font-weight: 500;
}
.pp-icon { color: #2ED573; font-weight: 700; }

/* ========== CTA SECTION ========== */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-container {
  position: relative; z-index: 2;
  padding: 80px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px; backdrop-filter: blur(20px);
}
.cta-glow-effect {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,105,180,0.1), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}
.cta-note { margin-top: 28px; font-size: 0.8rem; color: var(--text-muted); }

/* Google Play Logo - Animated Border + Heartbeat */
.cta-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.google-play-logo-container {
  display: flex;
  justify-content: center;
}
.google-play-logo-link {
  display: block;
  position: relative;
  border-radius: 24px;
  padding: 5px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24, #FF6B9D);
  background-size: 400% 400%;
  animation: rainbow-border-rotate 4s linear infinite;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
  /* Heartbeat pulse */
  animation: rainbow-border-rotate 4s linear infinite, heartbeat-pulse 1.8s ease-in-out infinite;
}
.google-play-logo-link:hover {
  transform: scale(1.08);
}
/* Glow effect behind the logo */
.google-play-logo-link::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 30px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24, #FF6B9D);
  background-size: 400% 400%;
  animation: rainbow-border-rotate 4s linear infinite;
  filter: blur(18px);
  opacity: 0.5;
  z-index: -1;
}
/* Second glow layer for depth */
.google-play-logo-link::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 36px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 157, 0.2) 0%,
    rgba(192, 132, 252, 0.15) 30%,
    rgba(96, 165, 250, 0.1) 50%,
    transparent 70%
  );
  z-index: -2;
  animation: glow-breathe 3s ease-in-out infinite;
}
.google-play-logo {
  display: block;
  width: 220px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@keyframes rainbow-border-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes heartbeat-pulse {
  0% { transform: scale(1); }
  5% { transform: scale(1.06); }
  10% { transform: scale(1); }
  15% { transform: scale(1.09); }
  20% { transform: scale(1); }
  100% { transform: scale(1); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}
/* Second logo animation delay for stagger effect */
.google-play-logo-container:nth-child(2) .google-play-logo-link {
  animation: rainbow-border-rotate 4s linear infinite, heartbeat-pulse 1.8s ease-in-out 0.4s infinite;
}
.google-play-logo-container:nth-child(2) .google-play-logo-link::before {
  animation: rainbow-border-rotate 4s linear -2s infinite;
}

/* ========== GAMES PAGE REDESIGN ========== */
.games-hero { padding-bottom: 40px; }

/* Stats Row */
.games-stats-section { padding-top: 0; padding-bottom: 60px; }
.games-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.games-stat-card {
  text-align: center; padding: 28px 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 18px; backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}
.games-stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.games-stat-icon { font-size: 1.6rem; margin-bottom: 10px; }
.games-stat-val {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2;
}
.games-stat-label {
  font-size: 0.75rem; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* Games Showcase */
.games-showcase {
  display: flex; flex-direction: column; gap: 28px;
}
.game-showcase-card {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 20px; overflow: hidden;
  transition: all 0.4s var(--ease);
  text-decoration: none; color: inherit;
}
.game-showcase-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.game-showcase-card.featured-game { border-color: rgba(255,105,180,0.2); }
.game-showcase-card.featured-game:hover { border-color: var(--accent-1); }

.game-showcase-img {
  position: relative; overflow: hidden;
  min-height: 240px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(15,15,35,0.8), rgba(10,10,26,0.95));
}
.game-showcase-image {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.game-showcase-card:hover .game-showcase-image { transform: scale(1.05); }
.game-showcase-overlay {
  position: absolute; top: 16px; left: 16px; z-index: 2;
}
.game-showcase-badge {
  display: inline-block; padding: 6px 16px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  background: rgba(46,213,115,0.15); color: #2ED573;
  border: 1px solid rgba(46,213,115,0.25);
  backdrop-filter: blur(10px);
}
.game-showcase-badge.soon-badge {
  background: rgba(245,158,11,0.12); color: var(--accent-3);
  border-color: rgba(245,158,11,0.2);
}

.game-showcase-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.game-showcase-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.game-showcase-header h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
}
.game-showcase-arrow {
  font-size: 1.3rem; color: var(--accent-1);
  transition: transform 0.3s var(--ease);
}
.game-showcase-card:hover .game-showcase-arrow { transform: translateX(6px); }
.game-showcase-body > p {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 18px;
}
.game-showcase-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.gst {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px; font-size: 0.72rem; font-weight: 500;
  background: rgba(255,105,180,0.06); border: 1px solid rgba(255,105,180,0.1);
  border-radius: 100px; color: var(--text-secondary);
}
.game-showcase-footer {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--glass-border);
  font-size: 0.82rem;
}
.gsf-platform { color: var(--text-secondary); }
.gsf-price {
  color: #2ED573; font-weight: 600;
  background: rgba(46,213,115,0.08); padding: 3px 12px;
  border-radius: 100px; border: 1px solid rgba(46,213,115,0.12);
}
.gsf-cta { color: var(--accent-1); font-weight: 600; margin-left: auto; }
.gsf-status { color: var(--text-muted); font-style: italic; margin-left: auto; }

/* Coming Soon Cards */
.coming-soon-game {
  opacity: 0.55;
  cursor: default;
}
.coming-soon-game:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--glass-border);
}
.cs-img {
  background: linear-gradient(135deg, rgba(15,15,35,0.95), rgba(10,10,26,1));
}
.cs-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; width: 100%; padding: 40px;
}
.cs-icon { font-size: 3rem; opacity: 0.4; }
.cs-placeholder span {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.05em;
}

/* ========== PAGE HERO (sub pages) ========== */
.page-hero {
  padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; z-index: 2;
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,105,180,0.06), transparent 65%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem;
  color: var(--text-muted); margin-bottom: 20px; justify-content: center;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-1); }

/* ========== FOOTER ========== */
.footer {
  padding: 80px 0 32px; position: relative; z-index: 2;
  background: rgba(5,5,16,0.6);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7;
  max-width: 280px; margin: 16px 0 20px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}
.social-link:hover {
  border-color: var(--accent-1); color: var(--accent-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,105,180,0.2);
}
.footer-col h4 {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 18px; color: var(--text-secondary);
  font-family: var(--font-main);
}
.footer-col a {
  display: block; color: var(--text-muted); font-size: 0.88rem;
  padding: 5px 0; transition: all 0.3s var(--ease);
}
.footer-col a:hover { color: var(--accent-1); padding-left: 6px; }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,105,180,0.15), transparent);
}
.footer-bottom {
  padding-top: 24px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 0.8rem; }
.footer-links a:hover { color: var(--accent-1); }

/* ========== GAMES PAGE ========== */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.game-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 18px; overflow: hidden; transition: all 0.4s var(--ease); display: block;
  backdrop-filter: blur(10px);
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border-color: var(--border-hover);
}
.game-card-img { width: 100%; height: 220px; overflow: hidden; position: relative; }
.game-card-img svg { width: 100%; height: 100%; }
.game-card-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, var(--bg-surface), transparent);
}
.game-card-body { padding: 24px; }
.game-card-tag {
  display: inline-block; padding: 4px 12px; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px;
  background: rgba(46,213,115,0.08); color: #2ED573; border: 1px solid rgba(46,213,115,0.15);
  margin-bottom: 12px;
}
.game-card-tag.soon { background: rgba(245,158,11,0.08); color: var(--accent-3); border-color: rgba(245,158,11,0.15); }
.game-card h3 { font-size: 1.3rem; margin-bottom: 8px; font-family: var(--font-display); font-weight: 700; }
.game-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.game-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--glass-border); }
.game-card.dim { opacity: 0.35; cursor: default; }
.game-card.dim:hover { transform: none; box-shadow: none; }
.game-card-lock { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 3rem; z-index: 2; }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 48px; margin-bottom: 64px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-val {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label-page { font-size: 0.78rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ========== GAME DETAIL ========== */
.gd-hero { padding: 140px 0 80px; position: relative; overflow: hidden; z-index: 2; }
.gd-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,105,180,0.04) 0%, var(--bg-deep) 100%); pointer-events: none;
}
.gd-hero-inner { display: flex; align-items: center; gap: 28px; position: relative; z-index: 2; }
.gd-icon {
  width: 110px; height: 110px; min-width: 110px; border-radius: 22px; overflow: hidden;
  border: 2px solid rgba(255,105,180,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.gd-icon svg { width: 100%; height: 100%; }
.gd-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.gd-tagline { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 16px; }
.gd-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; font-size: 0.88rem; color: var(--text-secondary); }
.gd-badges { display: flex; gap: 12px; flex-wrap: wrap; }

/* Video */
.video-container {
  position: relative; max-width: 900px; margin: 0 auto; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--glass-border); box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  aspect-ratio: 16/9; background: var(--bg-surface);
}
.video-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,105,180,0.02), rgba(74,144,226,0.02));
  transition: all 0.3s var(--ease);
}
.video-placeholder:hover { background: linear-gradient(135deg, rgba(255,105,180,0.05), rgba(74,144,226,0.05)); }
.video-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--accent-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--accent-1); margin-bottom: 14px;
  transition: all 0.3s var(--ease);
}
.video-placeholder:hover .video-play-btn { box-shadow: 0 0 30px rgba(255,105,180,0.3); }
.video-placeholder span { font-size: 0.8rem; color: var(--text-secondary); letter-spacing: 0.1em; text-transform: uppercase; }

/* Promo Video Player */
.promo-video-wrapper {
  position: relative; max-width: 400px; margin: 0 auto;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,105,180,0.2);
}
.promo-video-player {
  width: 100%; display: block;
  background: black; border-radius: 22px;
}

/* Battle Showcase Gallery */
.battle-showcase-gallery {
  display: flex; flex-direction: column; gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.battle-gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(255,105,180,0.15);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  transition: all 0.5s var(--ease);
}
.battle-gallery-item:hover {
  border-color: var(--accent-1);
  transform: translateY(-6px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.4), 0 0 30px rgba(255,105,180,0.12);
}
.battle-gallery-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,105,180,0.05), transparent 60%, rgba(74,144,226,0.05));
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.battle-gallery-item:hover .battle-gallery-glow { opacity: 1; }
.battle-gallery-img {
  width: 100%; height: auto; display: block;
  border-radius: 18px;
  transition: transform 0.6s var(--ease);
}
.battle-gallery-item:hover .battle-gallery-img { transform: scale(1.02); }

/* Screenshots */
.screenshots {
  display: flex; gap: 20px; overflow-x: auto; padding: 20px 0 40px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.screenshots::-webkit-scrollbar { display: none; }
.ss-item {
  min-width: 240px; max-width: 240px; scroll-snap-align: start; border-radius: 14px;
  overflow: hidden; border: 1px solid var(--glass-border); transition: all 0.3s var(--ease); flex-shrink: 0;
}
.ss-item:hover { border-color: var(--accent-1); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.ss-item img { width: 100%; height: auto; display: block; }
.ss-item svg { width: 100%; height: auto; }
.ss-nav { display: flex; align-items: center; justify-content: center; gap: 12px; }
.ss-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 1.1rem; cursor: pointer; background: transparent;
  transition: all 0.3s var(--ease);
}
.ss-btn:hover { border-color: var(--accent-1); color: var(--accent-1); }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Battle Deep Dive */
.battle-deep { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.battle-rules { display: flex; flex-direction: column; gap: 14px; }
.battle-rule {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 14px; transition: all 0.3s var(--ease);
}
.battle-rule:hover { border-color: var(--border-hover); background: rgba(255,105,180,0.03); }
.battle-rule .emoji { font-size: 1.3rem; flex-shrink: 0; }
.battle-rule h4 { font-size: 0.92rem; margin-bottom: 3px; font-family: var(--font-display); font-weight: 600; }
.battle-rule p { font-size: 0.85rem; color: var(--text-secondary); }
.igrid-box {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}
.igrid-scoreboard {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding: 12px 18px; background: var(--bg-surface); border-radius: 12px;
}
.igrid-player { display: flex; align-items: center; gap: 10px; }
.igrid-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}
.igrid-player.gold .igrid-avatar { background: rgba(255,105,180,0.15); border: 1px solid var(--accent-1); color: var(--accent-1); }
.igrid-player.blue .igrid-avatar { background: rgba(74,144,226,0.15); border: 1px solid var(--accent-2); color: var(--accent-2); }
.igrid-score { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.igrid-vs { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; }

/* ========== ABOUT PAGE ========== */
.about-hero { padding-bottom: 40px; }

/* About Intro - Who We Are */
.about-intro {
  display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: center;
}
.about-logo-showcase {
  position: relative; border-radius: 24px; overflow: hidden;
  padding: 4px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24);
  background-size: 300% 300%;
  animation: rainbow-border-spin 4s linear infinite;
  box-shadow: 0 0 30px rgba(255,107,157,0.3), 0 12px 48px rgba(0,0,0,0.3);
}
.about-logo-showcase::before {
  content: ''; position: absolute; inset: -8px; border-radius: 28px;
  background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399, #FBBF24);
  background-size: 300% 300%;
  animation: rainbow-border-spin 4s linear infinite;
  filter: blur(16px); opacity: 0.4; z-index: -1;
}
.about-logo-img {
  width: 100%; height: auto; display: block;
  border-radius: 20px; position: relative; z-index: 1;
}
.about-intro-content .section-tag { margin-bottom: 20px; }
.about-intro-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.about-intro-text {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 16px;
}
.about-intro-text strong { color: var(--text-primary); }
.about-quick-stats {
  display: flex; gap: 24px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid rgba(255,105,180,0.1);
}
.aqs-item { text-align: center; }
.aqs-val {
  display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.aqs-label {
  display: block; font-size: 0.68rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px;
}

/* Mission Text - Fallback */
.mission-text {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem); line-height: 1.75;
  max-width: 750px; margin: 0 auto 36px; color: var(--text-secondary); text-align: center;
}
.mission-text strong { color: var(--text-primary); }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  text-align: center; padding: 40px 32px;
  background: linear-gradient(135deg, rgba(20, 20, 45, 0.95), rgba(15, 15, 35, 0.98)) !important;
  border: 2px solid rgba(255, 105, 180, 0.25) !important;
  border-radius: 20px; backdrop-filter: blur(15px);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.value-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,105,180,0.05), rgba(74,144,226,0.03));
  opacity: 1; z-index: 0;
}
.value-card:hover::before { opacity: 1; background: linear-gradient(135deg, rgba(255,105,180,0.08), rgba(74,144,226,0.05)); }
.value-card:hover {
  border-color: var(--accent-1) !important;
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 24px rgba(255,105,180,0.2) !important;
}
.value-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,105,180,0.12), rgba(74,144,226,0.08));
  border: 2px solid rgba(255,105,180,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(255,105,180,0.1);
}
.value-icon-wrap .feature-icon {
  font-size: 1.8rem;
  filter: brightness(1.2) saturate(1.1);
}
.value-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1;
  color: #ffffff;
}
.value-card p {
  font-size: 0.9rem; color: rgba(240, 240, 255, 0.75); line-height: 1.7;
  position: relative; z-index: 1;
}

/* Team Card */
.about-team-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 40px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 40px; backdrop-filter: blur(10px);
  max-width: 800px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transition: all 0.4s var(--ease);
}
.about-team-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.atc-logo { display: flex; align-items: center; justify-content: center; }
.atc-logo-img {
  width: 100%; height: auto; border-radius: 20px;
  border: 2px solid rgba(255,105,180,0.15);
}
.atc-content h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 4px;
}
.atc-subtitle {
  display: block; font-size: 0.82rem; color: var(--accent-1);
  font-weight: 500; margin-bottom: 16px;
}
.atc-content p {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 20px;
}
.atc-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.atc-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 14px; font-size: 0.72rem; font-weight: 500;
  background: rgba(255,105,180,0.06); border: 1px solid rgba(255,105,180,0.1);
  border-radius: 100px; color: var(--text-secondary);
}
.atc-since {
  display: block; font-size: 0.78rem; color: var(--text-muted);
  font-style: italic;
}
.roadmap { position: relative; max-width: 780px; margin: 0 auto; }
.roadmap::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--accent-1), var(--accent-2), rgba(255,105,180,0.1)); opacity: 0.3;
}
.rm-item { position: relative; padding: 20px 0; display: grid; grid-template-columns: 1fr 50px 1fr; align-items: center; gap: 16px; }
.rm-item:nth-child(even) .rm-content { grid-column: 3; text-align: left; }
.rm-item:nth-child(even) .rm-empty { grid-column: 1; }
.rm-item:nth-child(odd) .rm-content { grid-column: 1; text-align: right; }
.rm-item:nth-child(odd) .rm-empty { grid-column: 3; }
.rm-dot {
  grid-column: 2; width: 14px; height: 14px; border-radius: 50%; margin: 0 auto;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 0 16px rgba(255,105,180,0.3);
}
.rm-content h3 { font-size: 1.05rem; margin-bottom: 4px; font-family: var(--font-display); font-weight: 600; }
.rm-content p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }
.rm-date { font-size: 0.72rem; color: var(--accent-1); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
.rm-status {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px;
}
.rm-status.active { background: rgba(46,213,115,0.08); color: #2ED573; border: 1px solid rgba(46,213,115,0.15); }
.rm-status.planned { background: rgba(74,144,226,0.08); color: var(--accent-2); border: 1px solid rgba(74,144,226,0.15); }
.rm-status.future { background: rgba(245,158,11,0.08); color: var(--accent-3); border: 1px solid rgba(245,158,11,0.15); }

/* ========== CONTACT PAGE ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; }
.contact-form h2, .contact-aside h2 { font-size: 1.7rem; margin-bottom: 8px; font-family: var(--font-display); font-weight: 700; }
.contact-form > p, .contact-aside > p { color: var(--text-secondary); margin-bottom: 32px; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 8px; color: var(--text-secondary);
}
.form-input, .form-textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,105,180,0.03); border: 1px solid var(--glass-border);
  border-radius: 12px; color: var(--text-primary); font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(255,105,180,0.08);
  background: rgba(255,105,180,0.05);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-error { color: #FF4757; font-size: 0.78rem; margin-top: 6px; display: none; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input, .form-group.has-error .form-textarea { border-color: #FF4757; }
.form-success {
  padding: 20px; background: rgba(46,213,115,0.06); border: 1px solid rgba(46,213,115,0.15);
  border-radius: 12px; color: #2ED573; text-align: center; margin-bottom: 20px; display: none;
}
.form-success.show { display: block; }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: rgba(255,105,180,0.06); border: 1px solid rgba(255,105,180,0.12);
}
.contact-text h4 { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; color: var(--text-secondary); font-weight: 600; }
.contact-text a, .contact-text p { color: var(--text-primary); font-size: 0.95rem; }
.contact-text a:hover { color: var(--accent-1); }
.contact-social { padding-top: 28px; border-top: 1px solid var(--glass-border); }
.contact-social h3 { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; color: var(--text-secondary); font-weight: 600; }
.response-time {
  margin-top: 28px; padding: 18px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 14px;
}
.response-time h3 { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; color: var(--text-secondary); font-weight: 600; }
.response-time p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* ========== PRIVACY POLICY PAGE ========== */
.legal {
  max-width: 780px; margin: 0 auto;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 48px; backdrop-filter: blur(10px);
}
.legal h2 { font-size: 1.5rem; margin: 32px 0 12px; font-family: var(--font-display); }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; font-family: var(--font-display); }
.legal p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin-bottom: 16px; }
.legal li { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; padding: 2px 0; list-style: disc; }
.legal a { color: var(--accent-1); }
.legal a:hover { color: var(--accent-2); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .section { padding: 100px 0; }
  .hero-matrix { grid-template-columns: 1fr; gap: 50px; }
  .hero-scene { order: -1; }
  .scene-3d { width: 320px; height: 320px; margin: 0 auto; }
  .hero-game-image { width: 300px; height: 300px; }
  .floating-board { width: 180px; height: 180px; padding: 10px; gap: 4px; }
  .board-cell { font-size: 1.5rem; }
  .holo-card { display: none; }
  .orbit-ring { display: none; }
  .featured-grid { flex-direction: column; gap: 50px; text-align: center; }
  .featured-visual { order: -1; flex: 0 0 auto; }
  .featured-content { flex: 1 1 auto; }
  .featured-actions { justify-content: center; }
  .battle-showcase { grid-template-columns: 1fr; gap: 40px; }
  .battle-grid-container { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .gd-hero-inner { flex-direction: column; text-align: center; }
  .gd-meta { justify-content: center; }
  .gd-badges { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .battle-deep { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-mark { width: 40px; height: 40px; border-radius: 11px; }
  .logo-c { font-size: 1.5rem; }
  .logo-dino { font-size: 0.6rem; }
  .logo-customi-char { font-size: 1.5rem; }
  .logo-game-char { font-size: 0.95rem; }
  .footer-logo .logo-mark { width: 34px; height: 34px; }
  .footer-logo .logo-c { font-size: 1.3rem; }
  .footer-logo .logo-customi-char { font-size: 0.9rem; }
  .footer-logo .logo-game-char { font-size: 0.75rem; }
  .hero { padding: 100px 0 60px; }
  .hero-title .title-line { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-cta-group { flex-direction: column; gap: 12px; }
  .hero-cta-group .btn-hologram, .hero-cta-group .btn-glass { width: 100%; max-width: 280px; justify-content: center; }
  .hero-stats { flex-direction: row; gap: 24px; flex-wrap: wrap; }
  .scene-3d { width: 260px; height: 260px; }
  .hero-game-image { width: 240px; height: 240px; }
  .floating-board { width: 160px; height: 160px; padding: 8px; gap: 3px; }
  .board-cell { font-size: 1.3rem; border-radius: 6px; }
  .steps-flow { grid-template-columns: 1fr; gap: 20px; }
  .screenshots-gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .feature-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 14px auto 18px; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 0 60px; }
  .store-badges { flex-direction: column; align-items: center; }
  .store-badge { width: 100%; max-width: 260px; justify-content: center; }
  .section-header { margin-bottom: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-logo-showcase { max-width: 240px; margin: 0 auto; }
  .about-quick-stats { justify-content: center; }
  .about-team-card { grid-template-columns: 1fr; text-align: center; }
  .atc-logo-img { max-width: 180px; margin: 0 auto; }
  .atc-badges { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .games-grid { grid-template-columns: 1fr; }
  .games-stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .game-showcase-card { grid-template-columns: 1fr; }
  .game-showcase-img { min-height: 200px; }
  .gd-hero { padding: 120px 0 60px; }
  .gd-icon { width: 72px; height: 72px; min-width: 72px; }
  .roadmap::before { left: 16px; }
  .rm-item { grid-template-columns: 32px 1fr; gap: 14px; }
  .rm-dot { grid-column: 1; }
  .rm-item:nth-child(odd) .rm-content, .rm-item:nth-child(even) .rm-content { grid-column: 2; text-align: left; }
  .rm-item:nth-child(odd) .rm-empty, .rm-item:nth-child(even) .rm-empty { display: none; }
  .privacy-container { padding: 40px 24px; }
  .privacy-points { flex-direction: column; gap: 12px; }
  .cta-container { padding: 48px 24px; }
  .legal { padding: 32px 24px; }
  .google-play-logo { width: 180px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .btn-hologram, .btn-glass { padding: 14px 28px; font-size: 0.84rem; }
  .grid-cell { border-radius: 2px; }
  .battle-grid { gap: 2px; }
  .hero-stats { gap: 20px; }
  .logo-mark { width: 36px; height: 36px; border-radius: 10px; }
  .logo-c { font-size: 1.35rem; }
  .logo-dino { font-size: 0.55rem; }
  .logo-customi-char { font-size: 1.35rem; }
  .logo-game-char { font-size: 0.9rem; }
  .footer-logo .logo-mark { width: 30px; height: 30px; }
  .footer-logo .logo-c { font-size: 1.15rem; }
  .footer-logo .logo-customi-char { font-size: 1.15rem; }
  .footer-logo .logo-game-char { font-size: 0.75rem; }
  .hero-game-image { width: 200px; height: 200px; }
  .screenshots-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .google-play-logo { width: 160px; }
  .google-play-logo-container { margin-bottom: 32px; }
  .games-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .games-stat-card { padding: 20px 14px; }
  .games-stat-val { font-size: 1.6rem; }
  .game-showcase-body { padding: 24px 20px; }
  .game-showcase-header h3 { font-size: 1.2rem; }
}

