:root {
    /* Brighter, more neutral board color to make Black stones pop */
    --bg: #020617;          /* Deepest space */
    --board: #334155;       /* Muted Slate - much brighter than before */
    --grid: #475569;        /* Lighter grid lines for definition */
    --accent: #0ea5e9;      /* Electric Cyan */
    --white: #ffffff;
    --black: #000000;
}

body {
    background: var(--bg);
    color: var(--white);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Inter', system-ui, sans-serif;
}

#dashboard {
    width: 95vw;

}

