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

body {
    background: #0a0a0a;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

canvas {
    display: block;
}

#hint {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    letter-spacing: 2px;
    transition: opacity 0.5s ease;
}

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

#stats {
    position: fixed;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 1px;
}

#selected-info {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 1px;
    max-width: 200px;
}

#back {
    position: fixed;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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