body { background-color: #0f172a; color: white; }
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gradient-text {
    background: linear-gradient(135deg, #d946ef 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

#helpModal {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 28rem;
    width: 100%;
}
#helpModal::backdrop {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}
#helpModal[open] .modal-content {
    transform: scale(1);
    opacity: 1;
}
.modal-content {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}
