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

body {
    background: #0a0a0b;
    overflow: hidden;
    cursor: crosshair;
}

#canvas {
    display: block;
}

#hint {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.05em;
    transition: opacity 2s ease;
    pointer-events: none;
}

#hint.hidden {
    opacity: 0;
}

#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);
}
