:root {
    --bg: #071025;
    --bg-alt: #071827;
    --card: #0b1220;
    --muted: #9aa4b2;
    --accent: #5865F2;
    --accent-rgb: 88, 101, 242;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-depth: rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-lg: 16px;
    --gap: 16px;
    --text: #e6eef6;
    --max-width: 1200px;
    --danger: #e74c3c;
    --danger-dark: #c0392b;
    --sidebar-width: 280px;
    --topbar-height: 64px;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

body.resizing {
    user-select: none !important;
    -webkit-user-select: none !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    margin: 0;
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

.muted {
    color: var(--muted);
}

.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;
}

[hidden] {
    display: none !important;
}
