
html, body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #ff4500, #a00000 80%);
    overflow: hidden;
    height: 100%;
    width: 100%;
    font-family: "Courier New", monospace;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#overlay {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 230, 200, 0.85);
    font-size: 1.25rem;
    font-weight: bold;
    z-index: 2;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.7);
}
