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

body {
    background: #0a0a0c;
    overflow: hidden;
    cursor: none;
}

#canvas {
    display: block;
}

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

#hint.hidden {
    opacity: 0;
}

#back {
    position: fixed;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    z-index: 100;
}

#back:hover {
    color: rgba(255, 255, 255, 0.7);
}
