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

body {
    background: #0a0a0c;
    overflow: hidden;
    font-family: 'Georgia', serif;
}

#canvas {
    display: block;
}

#hint {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.5px;
    pointer-events: none;
    transition: opacity 0.5s;
}

#back {
    position: fixed;
    top: 20px;
    left: 20px;
    color: rgba(150, 150, 170, 0.4);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    z-index: 10;
}

#back:hover {
    color: rgba(150, 150, 170, 0.8);
}
