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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content h1 {
    font-size: clamp(1.2rem, 5vw, 3rem);
    color: rgba(180, 180, 180, 0.3);
    text-align: center;
    letter-spacing: 0.1em;
    font-family: 'Press Start 2P', monospace;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    #background-canvas {
        display: none;
    }
    body {
        background: #111;
    }
}
