body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

.game-container {
    width: 100%;
    height: 100%;
    position: relative;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

#gameCanvas {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #70c5ce; 
}

#ui-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

#score {
    font-size: 3em;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#pitch-meter-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
    border: 2px solid white;
}

#pitch-meter-bar {
    width: 0%;
    height: 100%;
    background-color: #ffde3a;
    border-radius: 8px;
    transition: width 0.1s linear;
}

.modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.modal-content {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
}

.modal-content button {
    font-size: 1.2rem;
    padding: 10px 20px;
    cursor: pointer;
}