body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1a1a1a;
    color: white;
    font-family: Arial, sans-serif;
}
#gameContainer {
    margin: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#controls {
    margin: 10px;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    width: 100%;
}
.control-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}
button {
    padding: 8px 16px;
    margin: 0 5px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.1s;
}
button:hover {
    transform: scale(1.05);
}
button:active {
    transform: scale(0.95);
}
button:disabled {
    background-color: #666;
    cursor: not-allowed;
}
button.active {
    background-color: #f44336;
}
input {
    padding: 8px;
    margin: 0 5px;
    width: 100px;
    border-radius: 4px;
    border: 1px solid #666;
    background-color: #444;
    color: white;
}
input:focus {
    outline: none;
    border-color: #4CAF50;
}
#score-id {
    margin: 20px;
    padding: 20px;
    justify-content: center;
    background-color: #333;
    border-radius: 5px;
    width: 50%;
    max-width: 800px;
}
#statistics {
    margin: 20px;
    padding: 20px;
    background-color: #333;
    border-radius: 5px;
    width: 90%;
    max-width: 800px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background-color: #444;
    border-radius: 4px;
}
.hit-rates-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.hit-rate-item {
    background-color: #444;
    padding: 5px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9em;
}
h3, h4 {
    margin: 0 0 15px 0;
    color: #4CAF50;
}