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

@keyframes trippyBg {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

body {
    /* Arka plana psikedelik animasyonlu bir gradient ekledik */
    background: radial-gradient(circle at center, #240046 0%, #050509 100%);
    animation: trippyBg 10s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#game-container {
    width: 100%;
    max-width: 400px;
    height: 100%;
    /* Mobil cihazlarda "aşağı çekerek yenile" veya çift tıklama ile zoom'u engeller */
    touch-action: none;
    /* Çift tonlu psikedelik/neon gölge yansıması */
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.15), 0 0 80px rgba(255, 0, 85, 0.15);
    /* Saydam çizgilerle trippy bir vizyon illüzyonu (Grid efekti) */
    background: repeating-linear-gradient(
        0deg,
        rgba(9, 10, 15, 0.7),
        rgba(9, 10, 15, 0.7) 20px,
        rgba(26, 5, 36, 0.7) 20px,
        rgba(26, 5, 36, 0.7) 40px
    );
}