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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000000;
    font-family: Arial, sans-serif;
}

#canvas-container {
    width: 100%;
    height: 100%;
}

#info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}