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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-family: 'Press Start 2P', 'Courier New', monospace;
}

.game-wrapper {
    text-align: center;
}

.game-title {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.game-info {
    display: flex;
    justify-content: space-around;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

.score-label { color: #ffd700; }
.lives-label { color: #ff6b6b; }
.level-label { color: #4ecdc4; }

.game-container {
    position: relative;
    border: 4px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

#gameCanvas {
    display: block;
}

.start-screen, .game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.95);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #ffd700;
    text-align: center;
    z-index: 100;
}

.start-screen h2, .game-over h2 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
}

.start-screen p, .game-over p {
    color: #fff;
    font-size: 10px;
    margin-bottom: 15px;
    line-height: 2;
}

.start-screen button, .game-over button {
    background: linear-gradient(180deg, #ffd700, #ff8c00);
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    color: #1a1a2e;
    font-weight: bold;
    transition: transform 0.1s;
}

.start-screen button:hover, .game-over button:hover {
    transform: scale(1.05);
}

.game-over {
    display: none;
}

.controls-info {
    margin-top: 10px;
    color: #888;
    font-size: 10px;
}

.branding {
    margin-top: 15px;
    color: #888;
    font-size: 10px;
}

.branding a {
    color: #ffd700;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 600px) {
    .game-title {
        font-size: 20px;
    }
    
    .game-info {
        font-size: 9px;
        padding: 8px 10px;
    }
    
    .game-container {
        width: 100%;
        max-width: 95vw;
    }
    
    #gameCanvas {
        width: 100%;
        height: auto;
    }
}
