:root {
    /* Slate */
    --color-slate-50: #f8fafc;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-slate-950: #020617;

    /* Emerald */
    --color-emerald-400: #34d399;
    --color-emerald-500: #10b981;
    --color-emerald-900: #064e3b;

    /* Blue */
    --color-blue-500: #3b82f6;

    /* Orange */
    --color-orange-500: #f97316;

    /* Purple */
    --color-purple-500: #a855f7;

    /* Red */
    --color-red-500: #ef4444;

    /* White/Black */
    --color-white: #ffffff;
    --color-black: #000000;
}

*, ::after, ::before {
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: 'Inter', sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
}

body {
    margin: 0;
    line-height: inherit;
    font-family: 'Inter', sans-serif;
    background-color: var(--color-slate-950);
    color: var(--color-slate-200);
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    text-transform: none;
    cursor: pointer;
    background-color: transparent;
    background-image: none;
}

svg {
    display: block;
    vertical-align: middle;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.7s ease-out forwards;
}

@keyframes slideInBottom {
    from { 
        opacity: 0;
        transform: translateY(1.5rem);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in-bottom {
    animation: slideInBottom 0.7s ease-out forwards;
}

@keyframes pulse {
    50% { opacity: .5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Utilities equivalent */
.text-center { text-align: center; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Blazor Error UI */
#blazor-error-ui {
    background: var(--color-slate-200);
    color: var(--color-slate-900);
    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;
}