* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #101114;
    --color-surface: #17191f;
    --color-surface-elevated: #20232b;
    --color-card: #17191f;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-text: #f4f6fb;
    --color-text-muted: #a7adba;
    --color-primary: #55b6ff;
    --color-primary-hover: #8fd0ff;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --transition-fast: 150ms ease;
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

body {
    position: fixed;
    inset: 0;
    touch-action: none;
}

app-shell {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

a {
    color: inherit;
}
