/* ========================================
   OJO DE REALITY - Design System
   Dark theme, neon green accents, glassmorphism
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors - Cyberpunk Theme */
  --bg-primary: #000000;
  --bg-secondary: #050510;
  --bg-tertiary: #080816;
  --bg-card: #0a0a1a;
  --bg-card-hover: #12122b;
  --bg-glass: rgba(10, 10, 26, 0.75);
  --bg-glass-strong: rgba(10, 10, 26, 0.92);

  --accent-primary: #ff00ff; /* Magenta Neon */
  --accent-primary-dim: rgba(255, 0, 255, 0.15);
  --accent-primary-glow: rgba(255, 0, 255, 0.35);
  
  --accent-secondary: #00ffff; /* Cyan Neon */
  --accent-secondary-dim: rgba(0, 255, 255, 0.12);
  --accent-secondary-glow: rgba(0, 255, 255, 0.35);
  
  --accent-hot: #ff3366; /* Red Hot */
  --accent-hot-dim: rgba(255, 51, 102, 0.15);
  
  --accent-warning: #ffaa00; /* Yellow */
  --accent-warning-dim: rgba(255, 170, 0, 0.12);
  
  --accent-success: #00ff00; /* Green Neon */
  --accent-success-dim: rgba(0, 255, 0, 0.15);
  
  --accent-purple: #8000ff; /* Violet */

  --text-primary: #f0f2f5;
  --text-secondary: #8b92a5;
  --text-muted: #555b6e;
  --text-accent: var(--accent-primary);

  --border-color: rgba(0, 255, 255, 0.15);
  --border-accent: rgba(255, 0, 255, 0.3);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Shadows - Cyberpunk Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 15px var(--accent-primary-dim), 0 0 30px rgba(255, 0, 255, 0.2);
  --shadow-glow-strong: 0 0 20px var(--accent-secondary-glow), 0 0 40px rgba(0, 255, 255, 0.3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --header-height: 72px;
  --sidebar-width: 380px;
  --max-width: 1440px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- Background Ambient Effects ---- */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 229, 255, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.015) 0%, transparent 50%);
  z-index: -1;
  animation: ambientShift 20s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, -1%) rotate(3deg); }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

