/**
 * Podcastify Design Tokens - Dark Premium Theme
 * Extracted from landing-new.css for consistency across all pages
 */

:root {
    /* ============================================
       COLORS - DARK BACKGROUNDS
       ============================================ */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-elevated: #222230;

    /* ============================================
       COLORS - ACCENTS (LILA DOMINANT)
       ============================================ */
    --accent-primary: #a855f7;
    --accent-secondary: #c084fc;
    --accent-cyan: #00f0ff;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-green: #22c55e;

    /* Semantic Colors (mapped from accents) */
    --primary: #a855f7;
    --primary-dark: #9333ea;
    --primary-light: #c084fc;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* ============================================
       COLORS - TEXT
       ============================================ */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    --text-inverse: #0a0a0f;

    /* ============================================
       GRADIENTS
       ============================================ */
    --gradient-hero: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #3b82f6 100%);
    --gradient-button: linear-gradient(135deg, #a855f7, #c084fc);
    --gradient-accent: linear-gradient(135deg, #a855f7, #ec4899);
    --gradient-glow: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    --gradient-card: linear-gradient(180deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%);

    /* ============================================
       GLOW EFFECTS
       ============================================ */
    --glow-primary: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
    --glow-intense: 0 0 30px rgba(168, 85, 247, 0.6), 0 0 60px rgba(168, 85, 247, 0.4), 0 0 90px rgba(168, 85, 247, 0.2);
    --glow-text: 0 0 10px rgba(168, 85, 247, 0.8);
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.4);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5);

    /* ============================================
       GLASS EFFECTS
       ============================================ */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-glow: rgba(168, 85, 247, 0.3);
    --glass-blur: blur(20px);

    /* ============================================
       BORDERS
       ============================================ */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
    --border-glow: 1px solid rgba(168, 85, 247, 0.4);

    /* Surface colors for cards/modals */
    --surface: #1a1a25;
    --surface-secondary: #222230;
    --surface-elevated: #2a2a38;

    /* Gray scale (for dark mode) */
    --gray-50: #27272a;
    --gray-100: #3f3f46;
    --gray-200: #52525b;
    --gray-300: #71717a;
    --gray-400: #a1a1aa;
    --gray-500: #d4d4d8;
    --gray-600: #e4e4e7;
    --gray-700: #f4f4f5;

    /* ============================================
       SHADOWS
       ============================================ */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.3);

    /* ============================================
       SPACING
       ============================================ */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;

    --space-xs: 8px;
    --space-s: 16px;
    --space-m: 32px;
    --space-l: 64px;
    --space-xl: 128px;

    /* ============================================
       TYPOGRAPHY
       ============================================ */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;

    /* ============================================
       BORDER RADIUS
       ============================================ */
    --radius-xs: 4px;
    --radius-s: 8px;
    --radius-m: 12px;
    --radius-l: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* ============================================
       TRANSITIONS
       ============================================ */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}
