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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --bg-dark: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 40%);
    margin: 0;
    padding-bottom: 50px;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    transition: transform 0.2s, background 0.2s;
}

.glass-card:hover {
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 0.9);
}

/* Typography & Elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-custom {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.btn-primary-custom:hover {
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.5);
    transform: translateY(-1px);
    color: white;
}

.form-control {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: #667eea;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
}

/* Stats Cards */
.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Team Inputs */
.player-input-group {
    margin-bottom: 0.75rem;
}
