body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a1a;
    /* Very dark blue/black for contrast */
    touch-action: none;
    /* Prevent Pull-to-refresh */
    overscroll-behavior: none;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}



.instruction-hint {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulseText 3s infinite ease-in-out;
    user-select: none;
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}