* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    overflow: hidden;
    cursor: none;
}

#canvas {
    display: block;
}

#audio-hint {
    position: fixed;
    bottom: 30px;
    left: 30px;
    color: rgba(255, 255, 255, 0.25);
    font-family: Georgia, serif;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.05em;
    transition: opacity 0.5s ease;
}

#audio-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

#restart {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0);
    font-family: Georgia, serif;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: color 3s ease;
    pointer-events: none;
}

#restart.visible {
    color: rgba(255, 255, 255, 0.3);
    pointer-events: auto;
}

#restart:hover {
    color: rgba(255, 255, 255, 0.6);
}

#home {
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

#home:hover {
    color: rgba(255, 255, 255, 0.5);
}
