@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Audiowide&display=swap');

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

body {
    min-height: 100vh;
    background: #000000;
    overflow: hidden;
    font-family: 'Creepster', cursive;
    /* Custom semi-transparent crosshair cursor */
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><line x1="16" y1="0" x2="16" y2="32" stroke="rgba(255,255,255,0.6)" stroke-width="1"/><line x1="0" y1="16" x2="32" y2="16" stroke="rgba(255,255,255,0.6)" stroke-width="1"/><circle cx="16" cy="16" r="2" fill="rgba(255,255,255,0.4)"/></svg>') 16 16, crosshair;
}

/* Canvas starfield */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Custom semi-transparent crosshair cursor */
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><line x1="16" y1="0" x2="16" y2="32" stroke="rgba(255,255,255,0.6)" stroke-width="1"/><line x1="0" y1="16" x2="32" y2="16" stroke="rgba(255,255,255,0.6)" stroke-width="1"/><circle cx="16" cy="16" r="2" fill="rgba(255,255,255,0.4)"/></svg>') 16 16, crosshair;
}

/* Vignette effect for immersion */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Text is now rendered as particles on canvas - no HTML text elements needed */