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

body {
    background: linear-gradient(135deg, #4c8844 0%, #798642 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#webgl-canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    touch-action: none;
    -ms-touch-action: none; /* For older IE */
    -webkit-user-select: none;
    user-select: none;
}

.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 1000;
    opacity: 0.8;
}