:root {
    --aura-bg: #0a0a0f;
    --aura-bg-2: #0f0f17;
    --aura-glow: #14141f;
    --aura-glass: rgba(21, 21, 30, 0.85);
    --aura-border: #262635;
    --aura-text: #f4f6fb;
    --aura-text-muted: #94a3b8;
    --aura-accent: #00e0ff;
    --aura-accent-2: #ad00ff;
    --aura-accent-soft: rgba(0, 224, 255, 0.18);
    --aura-brand-gradient: linear-gradient(135deg, #00e0ff 0%, #ad00ff 100%);
}

html, body {
    height: 100%;
    margin: 0;
    font-family: "Sora", "Segoe UI", sans-serif;
    background-color: var(--aura-bg);
    color: var(--aura-text);
}

body {
    background-image:
        radial-gradient(circle at 12% 18%, rgba(0, 224, 255, 0.18), transparent 40%),
        radial-gradient(circle at 88% 24%, rgba(173, 0, 255, 0.16), transparent 42%),
        linear-gradient(135deg, var(--aura-bg) 0%, var(--aura-bg-2) 100%);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(20, 20, 31, 0.45), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#app, .app-shell {
    position: relative;
    z-index: 1;
}

a {
    color: var(--aura-accent);
    text-decoration: none;
}

a:hover {
    color: #7fefff;
}

.mud-typography h1,
.mud-typography h2,
.mud-typography h3,
.mud-typography h4 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.mud-paper {
    background-image: linear-gradient(145deg, rgba(21, 21, 30, 0.92), rgba(14, 14, 22, 0.7));
}

.glass-panel {
    padding: 1.5rem;
    background: var(--aura-glass);
    border: 1px solid var(--aura-border);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(4, 8, 16, 0.45);
    backdrop-filter: blur(18px);
    animation: aura-rise 0.6s ease-out;
}

.glass-table {
    border-radius: 14px;
    border: 1px solid var(--aura-border);
    overflow: hidden;
}

.glass-table .mud-table-container,
.glass-table .mud-table-root {
    background: transparent;
}

.glass-table .mud-table-head {
    background: rgba(12, 16, 24, 0.6);
}

.glass-table .mud-table-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
    .glass-panel {
        padding: 1.25rem;
    }
}

@keyframes aura-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
