:root {
    --bg-deep: #05070a;
    --card-bg: rgba(13, 17, 23, 0.7);
    --accent: #3b82f6;
    --text-main: #e6edf3;
    --text-dim: #8b949e;
}
body { 
    background-color: var(--bg-deep); 
    color: var(--text-main); 
    font-family: 'Outfit', sans-serif;
    background-image: radial-gradient(circle at 50% -20%, #1e293b 0%, transparent 50%);
}
.glass-card { 
    background: var(--card-bg); 
    backdrop-filter: blur(16px) saturate(180%); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}
.sidebar { background-color: #0d1117; border-right: 1px solid rgba(255, 255, 255, 0.05); }
.nav-item { color: var(--text-dim); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.nav-item:hover { color: white; background: rgba(59, 130, 246, 0.1); transform: translateX(5px); }
.nav-item.active { background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent); color: #60a5fa; border-left: 4px solid #3b82f6; }

.type-badge {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-img {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.preview-img:hover { transform: scale(1.05); border-color: #3b82f6; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #484f58; }

.log-row { transition: background 0.2s; }
.log-row:hover { background: rgba(255, 255, 255, 0.03); }

.status-dot { height: 8px; width: 8px; border-radius: 50%; display: inline-block; }
.pulse-red { background-color: #ef4444; box-shadow: 0 0 0 rgba(239, 68, 68, 0.4); animation: pulse 2s infinite; }

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Discord Profile Redirection Active (discord.dog) */
