:root {
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-lime: #a6ff00;
    --neon-blue: #00d4ff;
    --neon-cyan: #00fff2;
    --neon-danger: #ea2121;
    --neon-warn: #ffcc00;
}

body {
    background: url('/assets/img/bg_incursion_hq.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8) !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }
::-webkit-scrollbar-thumb { background: var(--neon-lime); border-radius: 10px; }

/* Header & Sidebar */
.app-header {
    background: transparent !important;
    border-bottom: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px);
}

.app-sidebar {
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border) !important;
}

.app-sidebar .menu .menu-item .menu-link {
    border-radius: 8px;
    margin: 2px 10px;
    color: rgba(255,255,255,0.7);
}

.app-sidebar .menu .menu-item .menu-link:hover {
    background: rgba(166, 255, 0, 0.1);
    color: var(--neon-lime);
}

.app-sidebar .menu .menu-header {
    color: var(--neon-lime);
    opacity: 0.5;
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-top: 20px;
}

/* HUD Tables */
.table-hud {
    color: #fff;
}

.table-hud thead th {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    border-bottom: 1px solid var(--glass-border);
}

.table-hud tbody td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Buttons */
.btn-outline-theme {
    border-color: var(--neon-lime);
    color: var(--neon-lime);
}

.btn-outline-theme:hover {
    background: var(--neon-lime);
    color: #000;
}

/* Badges */
.badge-hud {
    background: rgba(166, 255, 0, 0.1);
    border: 1px solid var(--neon-lime);
    color: var(--neon-lime);
    text-transform: uppercase;
    font-size: 0.65rem;
    padding: 0.5em 1em;
}

/* Progress */
.progress {
    background: rgba(255,255,255,0.05);
    height: 8px;
    border-radius: 10px;
}

.progress-bar {
    background-color: var(--neon-lime) !important;
}
