/* === ULTRA MINIMALIST DARK ESPORTS 2025 - HOVER DOAR PE CLICKABLE === */
:root {
    --bg: #0b0f1a;
    --card-bg: rgba(15, 20, 35, 0.6);
    --border: rgba(59, 130, 246, 0.2);
    --text-primary: #f1f5f9;
    --text-muted: #94a3b8;
    --accent: #00e6a7;        /* Electric mint */
    --accent-secondary: #3b82f6;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-static: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.7);
    --blur: blur(20px);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }

/* Glassmorphism Cards - STATIC (fără hover lift) */
.glass {
    background: var(--card-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-static);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
    border-color: rgba(0, 230, 167, 0.4);
    box-shadow: var(--shadow-static);
    /* NU mai ridicăm cardul static */
}

/* Glassmorphism Cards - CLICKABLE (doar pe astea aplicăm hover lift) */
.glass-clickable {
    background: var(--card-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-static);
    transition: all 0.4s ease;
    cursor: pointer;
}

.glass-clickable:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

/* Accent Text Glow */
.glow-text {
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 230, 167, 0.4);
}

/* Tab Buttons – Minimalist Pills */
.tab-btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    background: transparent;
    border: 2px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: var(--blur);
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 230, 167, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(0, 230, 167, 0.2), rgba(59, 130, 246, 0.2));
    color: white;
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 230, 167, 0.4);
}

/* Stat Numbers */
.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent), #00b3e6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Rank Badge */
.rank-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(0, 230, 167, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    backdrop-filter: var(--blur);
    box-shadow: 0 0 20px rgba(0, 230, 167, 0.3);
}

/* Hero & Item Images */
.hero-icon, .item-icon {
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-icon:hover, .item-icon:hover {
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(0, 230, 167, 0.5);
}

/* Progress Bars */
.progress-container {
    height: 16px;
    background: #1e293b;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 8px;
    transition: width 1.5s ease;
    box-shadow: 0 0 20px rgba(0, 230, 167, 0.4);
}

/* Buttons */
.btn-primary {
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent), #00b886);
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 230, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 230, 167, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .stat-number { font-size: 2.8rem; }
    .tab-btn { padding: 10px 20px; font-size: 1rem; }
}