/* Import a video-game-style font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@600&display=swap');

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 100%);
    color: #e0e0e0;
    text-shadow: 0 0 8px #0ff;
    overflow-x: hidden;
}
/* Header and title */
.site-header {
    text-align: center;
    padding: 40px 0 10px 0;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.site-title {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #ff2e2e;
    text-shadow: 0 0 10px #ff2e2e, 0 0 20px #ff7b7b;
    letter-spacing: 2px;
}
h2 {
    font-family: 'Orbitron', sans-serif;
}
/* Canvas styling — gives a glowing arcade frame */
canvas {
    display: block;
    margin: 30px auto;
    width: 1200px;
    height: 700px;
    background-color: #ffffff;
    border: 2px solid #0ff;
    box-shadow: 0 0 30px #0ff, inset 0 0 10px #0ff;
    border-radius: 10px;
}

/* Controls section */
#controls {
    text-align: center;
    margin: 20px;
}

/* Futuristic buttons */
button {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    padding: 12px 25px;
    margin: 8px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(145deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px #00c6ff;
    transition: all 0.2s ease-in-out;
}

button:hover {
    background: linear-gradient(145deg, #0072ff, #00c6ff);
    box-shadow: 0 0 20px #00c6ff, 0 0 40px #0072ff;
    transform: scale(1.05);
}

/* Cursor info */
#cursor-info {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    margin-top: 10px;
}
