body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

h1 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 2.5em;
}

.info {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.score-board {
    display: flex;
    gap: 20px;
}

.score-board p {
    margin: 0;
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
}

#score {
    color: #667eea;
    font-size: 1.5em;
}

#lives {
    color: #764ba2;
    font-size: 1.5em;
}

button {
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.start-btn {
    background-color: #4CAF50;
    color: white;
}

.start-btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.pause-btn {
    background-color: #ff9800;
    color: white;
}

.pause-btn:hover {
    background-color: #e68900;
    transform: scale(1.05);
}

.pause-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

canvas {
    border: 3px solid #333;
    background-color: #000;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

.controls {
    margin-top: 20px;
    color: #666;
}

.controls p {
    margin: 8px 0;
    font-size: 0.95em;
}

#gameStatus {
    font-size: 1.1em;
    font-weight: bold;
    color: #667eea;
    margin-top: 10px;
}
