:root {
    --primary-color: #3b00e3;
    /* Dark blue/purple from button */
    --primary-hover: #2a00b0;
    --background-dark: #000411;
    /* Extremely dark blue/black background */
    --text-color: #333;
    --text-label: #555;
    --white: #ffffff;
    --surface-color: #0b0f19;
    /* Slightly lighter than background for cards/sidebar */
    --hover-color: #161b22;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-dark);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}