/* ==========================================================================
   SYNTRA FIVEM CONTROL PANEL - PREMIUM UI/UX CSS
   ========================================================================== */

:root {
    --bg-main: #0B0E14;
    --bg-panel: rgba(22, 27, 34, 0.65);
    --bg-panel-hover: rgba(30, 37, 46, 0.85);
    
    --accent-cyan: #00F0FF;
    --accent-cyan-dim: rgba(0, 240, 255, 0.1);
    
    --accent-purple: #7000FF;
    --accent-purple-dim: rgba(112, 0, 255, 0.1);
    
    --accent-rose: #FF0055;
    --accent-rose-dim: rgba(255, 0, 85, 0.1);

    --accent-emerald: #00FF88;
    --accent-emerald-dim: rgba(0, 255, 136, 0.1);

    --accent-warn: #FFB300;
    
    --text-main: #FFFFFF;
    --text-muted: #8B949E;
    
    --border-color: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(0, 240, 255, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Cairo', sans-serif;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .brand h2, .page-title, .stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-cyan { color: var(--accent-cyan) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-rose { color: var(--accent-rose) !important; }
.text-emerald { color: var(--accent-emerald) !important; }
.text-gray { color: var(--text-muted) !important; }
.text-gold { color: #FFD700 !important; }
.text-warn { color: var(--accent-warn) !important; }
.text-warning { color: var(--accent-warn) !important; }

.bg-cyan-dim { background: var(--accent-cyan-dim); }
.bg-purple-dim { background: var(--accent-purple-dim); }
.bg-emerald-dim { background: var(--accent-emerald-dim); }

.bg-glow {
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.08) 0%, rgba(0, 240, 255, 0.03) 30%, transparent 60%);
    z-index: -1;
    animation: glow-pulse 15s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.1) translate(2%, 2%); }
}

/* Layout */
.layout-container {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}
.brand-logo { 
    width: 100%;
    max-width: 220px;
    max-height: 120px; 
    object-fit: contain;
    transform: scale(1.3);
}

.nav-menu { flex: 1; overflow-y: auto; padding: 0 1rem; }
.nav-menu::-webkit-scrollbar { width: 4px; }
.nav-menu::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.nav-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 1.5rem 0.5rem 0.5rem;
    font-weight: 800;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.nav-item i { width: 20px; text-align: center; font-size: 1.1rem; }
.nav-item:hover {
    background: var(--bg-panel-hover);
    color: var(--text-main);
    transform: translateX(-4px);
}
.nav-item.active {
    background: linear-gradient(90deg, var(--accent-cyan-dim), transparent);
    color: var(--accent-cyan);
    border-right: 3px solid var(--accent-cyan);
}
.nav-badge {
    margin-right: auto;
    background: var(--accent-purple-dim);
    color: var(--accent-purple);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.server-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    background: var(--bg-panel-hover);
    padding: 0.8rem;
    border-radius: 8px;
}
.status-indicator {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}
.status-indicator.online { background: var(--accent-emerald); box-shadow: 0 0 10px var(--accent-emerald); }
.status-title { font-size: 0.8rem; color: var(--text-muted); }
.text-online { color: var(--accent-emerald); font-weight: 700; }
.copyright { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Topbar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0; z-index: 10;
}
.topbar-search {
    display: flex;
    align-items: center;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    width: 400px;
}
.topbar-search i { color: var(--text-muted); margin-left: 0.8rem; }
.topbar-search input {
    background: transparent; border: none; color: var(--text-main); font-family: var(--font-body); width: 100%; outline: none;
}
.topbar-actions { display: flex; align-items: center; gap: 1.5rem; }
.live-clock {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-cyan);
    display: flex; align-items: center; gap: 0.5rem;
}
.admin-profile { display: flex; align-items: center; gap: 1rem; cursor: pointer; }
.avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent-purple); object-fit: cover; }
.admin-info { display: flex; flex-direction: column; }
.admin-name { font-weight: 700; font-size: 0.95rem; }
.admin-role { font-size: 0.75rem; color: var(--accent-cyan); font-weight: 600; }

/* Tabs */
.tab-content { display: none; padding: 2rem; animation: fade-in 0.3s ease; }
.tab-content.active { display: block; }

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.page-title { font-size: 2rem; letter-spacing: -0.5px; margin-bottom: 0.5rem; }
.page-subtitle { color: var(--text-muted); font-size: 0.95rem; }

/* Panels & Cards */
.panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.panel-title { font-size: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover { transform: translateY(-5px); border-color: var(--border-glow); }
.stat-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.stat-info { display: flex; flex-direction: column; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.stat-value { font-size: 2.2rem; line-height: 1; }
.stat-max { font-size: 1rem; color: var(--text-muted); }

/* Tables */
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.data-table th {
    text-align: right; padding: 1rem;
    color: var(--text-muted); font-weight: 600; font-size: 0.85rem;
    text-transform: uppercase; border-bottom: 1px solid var(--border-color);
}
.data-table td {
    padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.02);
    vertical-align: middle; font-size: 0.95rem;
}
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.player-identity { display: flex; align-items: center; gap: 1rem; }
.player-avatar { width: 36px; height: 36px; border-radius: 8px; }
.player-name-box { display: flex; flex-direction: column; }
/* Modern Data Table */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    text-align: right;
}
.data-table th {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}
.data-table td {
    padding: 1rem 1.5rem;
    background: rgba(22, 27, 34, 0.4);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}
.data-table td:first-child { 
    border-top-right-radius: 12px; 
    border-bottom-right-radius: 12px; 
    border-right: 3px solid transparent; 
    border-left: none;
}
.data-table td:last-child { 
    border-top-left-radius: 12px; 
    border-bottom-left-radius: 12px; 
}

.data-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.data-table tbody tr:hover td {
    background: rgba(30, 37, 46, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.data-table tbody tr:hover td:first-child {
    border-right-color: var(--accent-cyan);
}

.player-identity {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.player-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.player-name-box {
    display: flex;
    flex-direction: column;
}
.p-name { font-weight: 800; font-size: 1.05rem; color: #FFF; }
.p-license { font-size: 0.75rem; color: var(--text-muted); font-family: monospace; }

.ping-badge { font-weight: 800; font-family: monospace; padding: 4px 12px; border-radius: 8px; background: rgba(0,0,0,0.4); display: inline-block; }
.ping-low { color: var(--accent-emerald); border-left: 3px solid var(--accent-emerald); box-shadow: 0 0 10px var(--accent-emerald-dim); }
.ping-mid { color: var(--accent-warn); border-left: 3px solid var(--accent-warn); box-shadow: 0 0 10px rgba(255, 179, 0, 0.1); }
.ping-high { color: var(--accent-rose); border-left: 3px solid var(--accent-rose); box-shadow: 0 0 10px var(--accent-rose-dim); }

/* Players Grid */
.players-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.player-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.player-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0.5; transition: opacity 0.3s;
}
.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(0, 240, 255, 0.3);
}
.player-card:hover::before { opacity: 1; }

.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}
.pc-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}
.player-card:hover .pc-avatar {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
}
.pc-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.2rem;
}
.pc-license {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}
.pc-footer {
    margin-top: auto;
}

/* Terminal */
.terminal {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: 350px;
    overflow-y: auto;
    padding: 1rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.log-line { margin-bottom: 0.3rem; }
.log-time { color: #555; }
.log-msg { color: #DDD; }
.console-input-group { display: flex; align-items: center; background: #000; border: 1px solid var(--border-color); border-radius: 8px; padding: 0.5rem; }
.prompt { color: var(--accent-emerald); font-weight: 700; margin: 0 0.5rem; font-family: monospace; }
.console-input-group input { flex: 1; background: transparent; border: none; color: #FFF; font-family: monospace; outline: none; }

/* Buttons & Badges */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.6rem 1.2rem; border-radius: 8px; border: none; cursor: pointer;
    font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
    transition: all 0.2s; outline: none;
}
.btn-xs { padding: 0.3rem 0.8rem; font-size: 0.8rem; border-radius: 6px; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-body); font-weight: 700; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; border: none; cursor: pointer; transition: 0.2s; }

.btn-cyan { background: var(--accent-cyan); color: #000; }
.btn-cyan:hover { box-shadow: 0 0 15px var(--accent-cyan-dim); transform: translateY(-2px); }
.btn-emerald { background: var(--accent-emerald); color: #000; }
.btn-emerald:hover { box-shadow: 0 0 15px var(--accent-emerald-dim); transform: translateY(-2px); }
.btn-purple { background: var(--accent-purple); color: #FFF; }
.btn-purple:hover { box-shadow: 0 0 15px var(--accent-purple-dim); transform: translateY(-2px); }
.btn-rose { background: var(--accent-rose); color: #FFF; }
.btn-rose:hover { box-shadow: 0 0 15px var(--accent-rose-dim); transform: translateY(-2px); }
.btn-warn { background: var(--accent-warn); color: #000; }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-main); }
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.outline { background: transparent !important; border: 1px solid currentColor !important; }
.btn-cyan.outline { color: var(--accent-cyan) !important; border-color: var(--accent-cyan) !important; }
.btn-emerald.outline { color: var(--accent-emerald) !important; border-color: var(--accent-emerald) !important; }
.btn-warn.outline { color: var(--accent-warn) !important; border-color: var(--accent-warn) !important; }
.btn-purple.outline { color: var(--accent-purple) !important; border-color: var(--accent-purple) !important; }
.btn-rose.outline { color: var(--accent-rose) !important; border-color: var(--accent-rose) !important; }

.badge { padding: 3px 8px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.badge-purple { background: var(--accent-purple-dim); color: var(--accent-purple); }
.badge-emerald { background: var(--accent-emerald-dim); color: var(--accent-emerald); }
.badge-rose { background: var(--accent-rose-dim); color: var(--accent-rose); }
.badge-cyan { background: var(--accent-cyan-dim); color: var(--accent-cyan); }
.badge-info { background: rgba(255,255,255,0.1); color: #FFF; }
.badge-warn { background: rgba(255, 179, 0, 0.1); color: var(--accent-warn); }
.badge-error { background: rgba(255,0,0,0.2); color: #FF4444; }

/* Store Grid */
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.store-card { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; text-align: center; transition: 0.3s; }
.store-card:hover { transform: translateY(-10px); border-color: var(--accent-cyan); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1); }
.store-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-main); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1.5rem; border: 1px solid var(--border-color); }
.store-price { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); color: var(--accent-emerald); }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-control { width: 100%; padding: 0.8rem 1rem; background: rgba(0,0,0,0.3); border: 1px solid var(--border-color); border-radius: 8px; color: #FFF; font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: 0.2s; }
.form-control:focus { border-color: var(--accent-cyan); box-shadow: 0 0 0 3px var(--accent-cyan-dim); }

/* Modals */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 100; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.3s; }
.modal.active { opacity: 1; pointer-events: auto; }
.modal-box { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 16px; width: 90%; max-width: 600px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform: translateY(20px); transition: 0.3s; }
.modal.active .modal-box { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--border-color); }
.modal-body { padding: 1.5rem; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Utilities */
.w-100 { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.text-right { text-align: right; }

/* Toasts */
.toast-container { position: fixed; bottom: 2rem; left: 2rem; z-index: 1000; display: flex; flex-direction: column; gap: 0.8rem; }
.toast { background: var(--bg-main); border: 1px solid var(--border-color); padding: 1rem 1.5rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 1rem; font-weight: 600; animation: slide-in 0.3s ease; transition: opacity 0.3s; }
.toast-success { border-right: 4px solid var(--accent-emerald); }
.toast-error { border-right: 4px solid var(--accent-rose); }
.toast-info { border-right: 4px solid var(--accent-cyan); }
.toast-warn { border-right: 4px solid var(--accent-warn); }

@keyframes slide-in {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Specific Panel Adjustments */
.mdt-search-panel { border-top: 3px solid var(--accent-cyan); }
.mdt-stats-panel { border-top: 3px solid var(--accent-emerald); }

/* Advanced Player Modal Grid */
.modal-xl { max-width: 1100px; width: 95%; }
.player-management-grid {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.pm-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pm-col::-webkit-scrollbar { width: 4px; }
.pm-col::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.pm-right { width: 320px; flex-shrink: 0; }
.pm-left { flex-grow: 1; }

.pm-card {
    background: rgba(15, 20, 25, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
}
.pm-card.border-rose { border-color: rgba(255, 0, 85, 0.3); }

.identity-card { position: relative; overflow: hidden; }
.identity-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 60px;
    background: linear-gradient(to bottom, rgba(0, 240, 255, 0.1), transparent);
    z-index: 0;
}
.avatar-wrapper { position: relative; z-index: 1; }
.avatar-lg { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--accent-cyan); object-fit: cover; }

.action-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.inventory-list-container {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
}
.inventory-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.inventory-list::-webkit-scrollbar { width: 4px; }
.inventory-list::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.inv-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: 0.2s;
}
.inv-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.inv-info { display: flex; align-items: center; gap: 0.8rem; }
.inv-img { width: 32px; height: 32px; object-fit: contain; }
.inv-name { font-weight: 600; font-size: 0.9rem; }
.inv-sub { font-size: 0.7rem; color: var(--text-muted); }
.inv-actions { display: flex; align-items: center; gap: 0.5rem; }
.inv-qty { background: rgba(0,0,0,0.5); padding: 2px 6px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; color: var(--accent-cyan); }

/* Login Screen */
.login-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    background: transparent;
}

.login-card {
    width: 100%;
    max-width: 450px;
    text-align: center;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: translateY(-20px);
    animation: fade-in-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-logo {
    width: 140px;
    height: auto;
    margin: 0 auto;
}

.btn-discord {
    background: #5865F2;
    color: white;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
}
.btn-discord:hover {
    background: #4752C4;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}
.btn-discord i {
    font-size: 1.3rem;
}
