body {
    background-color: #020617;
    color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

canvas {
    background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
}

.project-card {
    backdrop-filter: blur(10px);
}

.status-online { background-color: #22c55e !important; box-shadow: 0 0 15px #22c55e; }
.status-idle { background-color: #eab308 !important; box-shadow: 0 0 15px #eab308; }
.status-dnd { background-color: #ef4444 !important; box-shadow: 0 0 15px #ef4444; }
.status-offline { background-color: #64748b !important; }

.rainbow-pill {
    position: relative;
    background: linear-gradient(rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.4)) padding-box,
                linear-gradient(135deg, #ef4444, #f97316, #eab308, #22c55e, #06b6d4, #6366f1, #a855f7) border-box;
    background-size: 200% 200%;
    border: 2px solid transparent;
    animation: rainbow-border 4s ease infinite;
    color: #f1f5f9;
    z-index: 1;
}

.rainbow-pill::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ef4444, #f97316, #eab308, #22c55e, #06b6d4, #6366f1, #a855f7) border-box;
    background-size: 200% 200%;
    filter: blur(12px);
    opacity: 0.6;
    z-index: -1;
    border-radius: inherit;
    animation: rainbow-border 4s ease infinite;
}

@keyframes rainbow-border {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
