:root {
    --bg: #050a08;
    --panel: #0b1511;
    --neon: #00ff9c;
    --neon-soft: rgba(0, 255, 156, 0.25);
    --text: #d6ffe9;
    --muted: #7ddfc1;
    --danger: #ff4d4d;
}

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

    /* 🔥 mobile UX */
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    display: flex;

    background: radial-gradient(circle at top, #0d1f17, #050a08);
    color: var(--text);

    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;

    /* smoother text */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.Header {
    max-width: 100vw;
    width: 100vw;

    padding: 7px;

    background-color: var(--panel);
    color: var(--neon);
}

.SidePanel {
    max-width: 16vw;
    min-width: fit-content;

    width: min(16vw, min-width);

    height: 100vh;

    background-color: var(--neon-soft)
}