/*
 * TiltCheck Theme Variables
 * Auditing terminal + crypto explorer aesthetic
 * Dark base with neon accents - degen first vibes
 */

:root {
  /* === Color Palette === */
  /* Primary brand colors - Neon accents */
  --color-primary: #00FFC6; /* Neon cyan */
  --color-primary-dark: #00C2A0;
  --color-primary-light: #33FFD4;
  
  /* Secondary accents */
  --color-secondary: #00C2FF; /* Electric blue */
  --color-accent: #FF38A8; /* Rare pink accent */
  --color-gold: #ffd700; /* Gold highlight */
  
  /* Backgrounds - Dark base */
  --bg-primary: #0E0E0F; /* Deep terminal black */
  --bg-secondary: #111316; /* Slightly elevated */
  --bg-card: #1A1F24; /* Elevated surfaces (cards, modals) */
  --bg-elevated: #1A1F24;
  --bg-input: #111316;
  
  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #B8C4CE;
  --text-muted: #6B7280;
  --text-disabled: #4B5563;
  
  /* Borders & dividers - Sharp edges, neon 1px borders */
  --border-subtle: #1F2937;
  --border-emphasis: #374151;
  --border-glow: rgba(0, 255, 198, 0.3);
  --border-neon: 1px solid rgba(0, 255, 198, 0.4);
  
  /* Status/semantic colors */
  --color-positive: #4CAF50; /* Positive RTP / Fair */
  --color-caution: #FFC107; /* Caution */
  --color-danger: #FF5252; /* Manipulation risk flagged */
  --color-success: #4CAF50;
  --color-warning: #FFC107;
  --color-error: #FF5252;
  
  /* Status badges */
  --status-live: var(--color-primary);
  --status-beta: var(--color-caution);
  --status-soon: var(--text-muted);
  
  /* === Typography === */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  
  /* Font sizes (fluid typography) */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.7rem + 1.5vw, 2.8rem);
  --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  --text-4xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  
  /* Font weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  
  /* Line heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;
  
  /* === 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;
  
  /* === Effects === */
  /* Shadows - Security-style glows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 12px rgba(0, 255, 198, 0.2);
  --shadow-glow-strong: 0 0 20px rgba(0, 255, 198, 0.4);
  
  /* Glass panel effect */
  --glass-bg: rgba(26, 31, 36, 0.85);
  --glass-border: 1px solid rgba(0, 255, 198, 0.15);
  --glass-backdrop: blur(8px);
  
  /* Border radius - Sharp edges */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-full: 9999px;
  
  /* Transitions - No bouncy animations, only fade/opacity/slide */
  --transition-fast: 120ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 300ms ease-out;
  
  /* === Layout === */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 3vw, 2rem);
  
  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
}

/* 
 * Degen Edition Theme (Black/Gold) - Commented out
 * To activate, uncomment this block and comment out the default :root above
 */
/*
:root {
  --color-primary: #ffd700;
  --color-primary-dark: #daa520;
  --color-primary-light: #ffed4e;
  --color-secondary: #ff6b35;
  --color-accent: #ff006e;
  --color-gold: #ffd700;
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #141414;
  --bg-elevated: #0e0e0e;
  --bg-input: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #999999;
  --text-disabled: #666666;
  --border-subtle: #2a2a2a;
  --border-emphasis: #3a3a3a;
  --border-glow: rgba(255, 215, 0, 0.3);
  --status-live: var(--color-gold);
  --status-beta: #ff6b35;
  --status-soon: var(--text-muted);
}
*/
