body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    overflow: hidden; /* Hide scrollbars */
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#info {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
}

#cosmetics-menu {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
    z-index: 10;
}

#cosmetics-menu h3 {
    margin-top: 0;
}

#cosmetics-menu button {
    display: block;
    margin-top: 5px;
    width: 100%;
    padding: 5px;
    border: none;
    background-color: #444;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

#cosmetics-menu button:hover {
    background-color: #666;
}

/* Hide cursor when playing */
body.playing {
    cursor: none;
}

