:root {
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.14);
    --shadow-strong: 0 18px 50px rgba(0, 0, 0, 0.25);

    --accent-cyan: #00e7ff;
    --accent-cyan-soft: rgba(0, 231, 255, 0.16);
    --accent-purple: #7a3cff;
    --accent-purple-soft: rgba(122, 60, 255, 0.16);
    --accent-red: #ff5d6c;
    --accent-green: #2ad39b;
}

.app-shell.dark-theme {
    --bg-main: #0b1020;
    --bg-secondary: #11182b;
    --bg-panel: rgba(17, 24, 43, 0.86);
    --bg-elevated: #18233a;
    --bg-input: #0f1729;
    --text-main: #f4f7fb;
    --text-secondary: #9ca8c3;
    --border-color: rgba(255, 255, 255, 0.08);
    --sidebar-bg: #0d1425;
    --topbar-bg: rgba(17, 24, 43, 0.7);
}

.app-shell.light-theme {
    --bg-main: #f4f7fb;
    --bg-secondary: #ffffff;
    --bg-panel: rgba(255, 255, 255, 0.92);
    --bg-elevated: #edf2f8;
    --bg-input: #ffffff;
    --text-main: #122033;
    --text-secondary: #66758d;
    --border-color: rgba(18, 32, 51, 0.10);
    --sidebar-bg: #ffffff;
    --topbar-bg: rgba(255, 255, 255, 0.88);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #0b1020;
}

.hidden {
    display: none !important;
}