body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298); /* Gradient background */
    font-family: 'Press Start 2P', cursive; /* Retro font */
    color: #ffffff;
}

canvas {
    border: 2px solid #00ffff; /* Neon cyan border */
    background: rgba(0, 0, 0, 0.8); /* Slightly transparent black background */
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff; /* Neon glow effect */
}

h1 {
    color: #ff00ff; /* Neon magenta text */
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; /* Neon glow effect */
    font-size: 3em;
    margin-bottom: 0.5em;
}

p {
    color: #00ffff; /* Neon cyan text */
    text-shadow: 0 0 5px #00ffff; /* Neon glow effect */
    font-size: 1.5em;
    margin: 0;
}

/* Add a Tron-inspired grid effect for the whole page */
.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Vaporwave-inspired colors for text */
h1, p {
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.7), 0 0 30px rgba(255, 105, 180, 0.5); /* Soft neon glow */
}
