/*
    EVE Target Intel - Base Styles and Variables
    
    Copyright (C) 2025 moregh (https://github.com/moregh/)
    Licensed under AGPL License.
*/

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

:root {
    --primary-color: #00d4ff;
    --primary-light: #66e0ff;
    --primary-dark: #0099cc;
    --secondary-color: #4ade80;
    --secondary-light: #4adebc;
    --danger-color: #f87171;
    --warning-color: #fbbf24;
    --info-color: #22c55e;
    --war-color: #ff4757;
    --war-color-dark: #ff3742;
    --background-dark: #0a0a0a;
    --background-card: rgba(255, 255, 255, 0.05);
    --text-primary: #e0e0e0;
    --text-secondary: rgba(224, 224, 224, 0.7);
    --text-muted: rgba(224, 224, 224, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 212, 255, 0.3);

    --white-015: rgba(255, 255, 255, 0.015);
    --white-02: rgba(255, 255, 255, 0.02);
    --white-025: rgba(255, 255, 255, 0.025);
    --white-03: rgba(255, 255, 255, 0.03);
    --white-04: rgba(255, 255, 255, 0.04);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-06: rgba(255, 255, 255, 0.06);
    --white-07: rgba(255, 255, 255, 0.07);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-1: rgba(255, 255, 255, 0.1);
    --white-12: rgba(255, 255, 255, 0.12);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-2: rgba(255, 255, 255, 0.2);
    --white-25: rgba(255, 255, 255, 0.25);
    --white-3: rgba(255, 255, 255, 0.3);
    --white-4: rgba(255, 255, 255, 0.4);
    --white-5: rgba(255, 255, 255, 0.5);
    --white-6: rgba(255, 255, 255, 0.6);
    --white-7: rgba(255, 255, 255, 0.7);
    --white-8: rgba(255, 255, 255, 0.8);
    --white-9: rgba(255, 255, 255, 0.9);

    --gradient-highlight: linear-gradient(45deg, var(--white-1), var(--white-05));
    --gradient-war: linear-gradient(135deg, var(--war-color), var(--war-color-dark));
    --gradient-primary: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    --gradient-war-subtle: linear-gradient(135deg, rgba(255, 71, 87, 0.03), rgba(255, 71, 87, 0.08));
    --gradient-transparent: linear-gradient(135deg, transparent, var(--white-02), transparent);

    --radius-small: 6px;
    --radius-medium: 8px;
    --radius-large: 12px;
    --radius-xl: 13.5px;

    --transition-fast: 0.15s;
    --transition-normal: 0.2s;
    --transition-medium: 0.3s;
    --transition-slow: 0.5s;
    --transition-slower: 1s;
    --transition-slowest: 2s;

    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 3rem;

    --font-xs: 0.7rem;
    --font-sm: 0.75rem;
    --font-md: 0.85rem;
    --font-base: 0.9rem;
    --font-lg: 1rem;
    --font-xl: 1.1rem;
    --font-2xl: 1.3rem;
    --font-3xl: 1.5rem;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.2;
    overflow-x: hidden;
    position: relative
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    position: relative
}

.glass-card {
    background: var(--background-card);
    backdrop-filter: blur(18px);
    border: 0.9px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 7.2px 28.8px rgba(0, 0, 0, 0.3), inset 0 0.9px 0 var(--white-1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0)
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.9px;
    background: linear-gradient(90deg, transparent, var(--white-2), transparent)
}