body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    font-family: 'Inter', sans-serif;
}
canvas {
    display: block;
}
#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#instructions {
    width: 100%;
    max-width: 400px;
    color: white;
    text-align: center;
    padding: 20px;
    border: 2px solid white;
    border-radius: 12px;
    background-color: rgba(0,0,0,0.7);
}
#instructions:hover {
    background-color: rgba(255,255,255,0.1);
}
.info-title {
     font-size: 2em;
     font-weight: bold;
     margin-bottom: 10px;
} 