@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&display=swap');

:root {
    --bg-base: #121214; /* Deep charcoal/black */
    --surface-glass: rgba(30, 30, 35, 0.7);
    --surface-border: rgba(255, 255, 255, 0.05);
    
    --neon-red: #d92121; /* Brick red */
    --neon-green: #e5a910; /* Spotlight gold/yellow */
    --neon-purple: #c23b22; /* Burnt orange/red */
    --text-primary: #f0f0f0;
    --text-secondary: #8c8c8c;
}

body {
    background-color: var(--bg-base);
    background-image: radial-gradient(circle at top right, rgba(217, 33, 33, 0.1), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(229, 169, 16, 0.05), transparent 40%);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    min-height: 100vh;
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(181, 55, 242, 0.3); }
    50% { box-shadow: 0 0 20px rgba(181, 55, 242, 0.6); }
    100% { box-shadow: 0 0 10px rgba(181, 55, 242, 0.3); }
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}