/* Minimalist, high-end styling for Smėlio Džiazas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0d0d11; /* Deep, dark indigo/blue-gray */
    font-family: 'Outfit', sans-serif;
    user-select: none;
    -webkit-user-select: none;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.instructions {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(244, 164, 96, 0.35); /* Soft amber/sand tone */
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
    transition: opacity 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
