:root {
    --bg-void: #050608;
    --light-core: #38bdf8;
    --light-glow: rgba(56, 189, 248, 0.4);
    --dark-core: #ef4444;
    --dark-glow: rgba(239, 68, 68, 0.4);
    --inq-core: #f59e0b;
    --inq-glow: rgba(245, 158, 11, 0.4);
    --active-accent: #38bdf8;
    --active-glow: rgba(56, 189, 248, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-void);
    color: #e5e7eb;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 30px 15px;
}

#twilight-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}