#game-container {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

#frogger-canvas {
    background: #111;
    border: 2px solid #555;
}

.score-board {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1.2rem;
    color: #0f0;
}

.game-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border: 2px solid #0f0;
    text-align: center;
    z-index: 100;
}

.start-btn {
    background: #0f0;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}
