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

body {
    background: #000;
    overflow: hidden;
    font-family: monospace;
}

#game {
    display: block;
    width: 100vw;
    height: 100vh;
}

#instructions {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff00;
    text-align: center;
    font-size: 12px;
    text-shadow: 0 0 10px #00ff00;
    opacity: 0.7;
    pointer-events: none;
}

#instructions p {
    margin: 3px 0;
}
