:root {
    /* Academic Light Theme - Minimalist and Professional */
    --bg-primary: #fafaf9; /* Off-white/Paper */
    --bg-secondary: #f5f5f4;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0ef;
    --text-primary: #1c1917; /* Deep charcoal */
    --text-secondary: #44403c;
    --text-muted: #78716c;
    --accent: #0284c7; /* Professional muted blue */
    --accent-glow: rgba(2, 132, 199, 0.08);
    --accent-secondary: #0369a1;
    --accent-tertiary: #0c4a6e;
    --border: #e7e5e4;
    --border-hover: #d6d3d1;
    --gradient-1: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    --radius-md: 8px; /* Slightly less rounded for a more formal look */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}
