/* modern-theme.css */
:root {
  --background: #04080F;
  --accent: #00F2FF;
  --accent-secondary: #0066FF;
  --accent-green: #00FF9D;
  --accent-purple: #BC00FF;
  --card-bg: rgba(10, 15, 25, 0.7);
  --card-border: rgba(0, 242, 255, 0.2);
  --foreground: #F8FAFC;
  --muted: #64748B;
  --glow: 0 4px 12px rgba(0, 242, 255, 0.15);
  --glow-strong: 0 8px 24px rgba(0, 242, 255, 0.25);
  --font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font-family);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Animations */
.bg-animation {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1; overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #0a1931 0%, #04080f 80%);
  pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3;
  animation: float-orb 25s infinite alternate ease-in-out;
}
.orb-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: var(--accent-purple); bottom: -100px; right: -100px; animation-delay: -10s; }
.orb-3 { width: 300px; height: 300px; background: var(--accent-secondary); top: 30%; right: 10%; animation-delay: -5s; opacity: 0.2; }

.particles {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none; overflow: hidden;
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 80px) scale(1.2); }
}

/* Glassmorphism Components */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.glass-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.glass-pill {
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid rgba(0, 242, 255, 0.3);
  border-radius: 100px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 242, 255, 0.1);
}

/* Buttons */
.btn-modern {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; font-size: 1rem; border: none; border-radius: 16px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700; letter-spacing: 0.5px; gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-family);
  position: relative; overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: #04080F;
  box-shadow: 0 4px 20px rgba(0, 242, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.6);
  filter: brightness(1.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.btn-purple {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7000FF 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(188, 0, 255, 0.4);
}

.btn-purple:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(188, 0, 255, 0.6);
  filter: brightness(1.2);
}

/* Typography */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.5px; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 20px rgba(0, 242, 255, 0.2); }
  100% { box-shadow: 0 0 40px rgba(0, 242, 255, 0.5); }
}

.pulse-hover:hover {
  animation: pulse-glow 1.5s infinite alternate;
}
