/* HyperDVR Website - CSS Variables */

:root {
  /* Dark theme (default) */
  --bg: #050505;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --neon: #00ffcc;
  --neon-dim: rgba(0, 255, 204, 0.2);
  --neon-glow: rgba(0, 255, 204, 0.4);
  --neon-bright: #00ffee;
  --text: #e0e0e0;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --card: #0a0a0a;
  --card-hover: #121212;
  --border: rgba(0, 255, 204, 0.3);
  --border-subtle: rgba(0, 255, 204, 0.15);
  --success: #00ff88;
  --warning: #ffcc00;
  --error: #ff4444;
  --accent-blue: #00aaff;
  --accent-purple: #aa00ff;
  
  /* Typography */
  --font-main: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-neon: 0 0 20px rgba(0, 255, 204, 0.3);
  --shadow-neon-lg: 0 0 40px rgba(0, 255, 204, 0.4);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* Light theme */
[data-theme="light"] {
  --bg: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f0f0f0;
  --neon: #00b894;
  --neon-dim: rgba(0, 184, 148, 0.15);
  --neon-glow: rgba(0, 184, 148, 0.3);
  --neon-bright: #00d9a5;
  --text: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #888898;
  --card: #ffffff;
  --card-hover: #f5f5f5;
  --border: rgba(0, 184, 148, 0.3);
  --border-subtle: rgba(0, 184, 148, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-neon: 0 0 20px rgba(0, 184, 148, 0.2);
  --shadow-neon-lg: 0 0 40px rgba(0, 184, 148, 0.25);
}