* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            background-color: #000;
            overflow: hidden;
            height: 100vh;
            touch-action: manipulation;
        }
        #game-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
        }
        #stars {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
        }
        #player {
            position: absolute;
            width: 50px;
            height: 50px;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            transition: transform 0.1s;
        }
        #player svg {
            width: 100%;
            height: 100%;
            fill: #4FC3F7;
        }
        .laser {
            position: absolute;
            width: 3px;
            height: 15px;
            background-color: #00E5FF;
            border-radius: 3px;
            box-shadow: 0 0 10px #00B8D4;
        }
        .meteor {
            position: absolute;
            background-color: #795548;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
        }
        .explosion {
            position: absolute;
            width: 40px;
            height: 40px;
            background-color: #FF5722;
            border-radius: 50%;
            opacity: 0.8;
            pointer-events: none;
            animation: explode 0.5s forwards;
        }
        @keyframes explode {
            0% { transform: scale(0.5); opacity: 0.8; }
            100% { transform: scale(3); opacity: 0; }
        }
        #score-display {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            font-size: 18px;
            font-family: 'Arial', sans-serif;
            z-index: 100;
        }
        #lives-display {
            position: absolute;
            top: 50px;
            left: 20px;
            color: white;
            font-size: 18px;
            font-family: 'Arial', sans-serif;
            z-index: 100;
        }
        #game-over {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            z-index: 1000;
            font-size: 24px;
        }
        #restart-button {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #4CAF50;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        #controls {
            position: absolute;
            bottom: 10px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 100;
        }
        .control-button {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
            user-select: none;
        }
        @media (max-width: 600px) {
            #player {
                width: 40px;
                height: 40px;
            }
            .meteor {
                font-size: 16px;
            }
        }