/* Retro Terminal Maze Prank - Stylesheet */

/* Base styling for the entire page */
body {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
}

/* Canvas styling for retro terminal look */
canvas {
    display: block;
    border: 2px solid #00FF00;
    image-rendering: pixelated;
    transition: box-shadow 0.3s ease;
}

canvas:hover {
    box-shadow: 0 0 30px #00FF00, 0 0 60px rgba(0, 255, 0, 0.7);
}

/* Improved control styling */
.controls {
    margin-top: 10px;
}

.controls input[type="range"] {
    width: 100%;
    margin: 5px 0;
}

.controls button {
    background-color: #00FF00;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.controls button:hover {
    background-color: #0aff0a;
}

.controls label {
    margin: 5px 0;
    font-size: 14px;
}

/* Retro CRT scanline effect (applied via JS using canvas) */
