/* ==============================================
   DRAG NAME GENERATOR - DESIGN SYSTEM
   ============================================== */

:root {
  /* Primary Colors - Vibrant Neon */
  --primary: #ff00ff;
  --primary-light: #ff66ff;
  --secondary: #00ffff;
  --accent: #ffff00;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-button: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Background */
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Effects */
  --shadow-glow: 0 0 30px rgba(255, 0, 255, 0.3);
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-primary: 'Outfit', system-ui, sans-serif;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--primary-light); }
p { color: var(--text-secondary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav { display: flex; gap: var(--space-xl); }
.nav a { color: var(--text-secondary); font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--text-primary); }
.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px var(--space-lg) var(--space-2xl);
}
.hero-title { margin-bottom: var(--space-lg); }
.hero-title .highlight {
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: var(--space-xl); max-width: 600px; }
.hero-stats { display: flex; gap: var(--space-xl); margin-top: var(--space-lg); color: var(--text-muted); font-size: 0.9rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
}
.btn-primary {
  background: var(--gradient-button);
  color: white;
  box-shadow: var(--shadow-glow);
  animation: pulse 2s infinite;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 40px rgba(255, 0, 255, 0.5); }
.btn-secondary { background: var(--bg-card); color: white; border: var(--border-glass); }
.btn-secondary:hover { background: var(--bg-card-hover); }
.btn-large { padding: var(--space-lg) var(--space-2xl); font-size: 1.25rem; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.3); }
  50% { box-shadow: 0 0 50px rgba(255, 0, 255, 0.5); }
}

/* Split Section Layout */
.split-section {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  border: var(--border-glass);
  transition: transform var(--transition-normal);
}

.split-image img:hover {
  transform: scale(1.02);
}

/* Enhanced Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px var(--space-lg) var(--space-2xl);
  background-image: url('../assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.7); /* Dark overlay */
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .split-section, .split-section.reverse {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .split-image {
    order: -1; /* Image on top on mobile */
  }
}
