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

#doodle-jump-canvas {
    background: #fff;
    border: 1px solid #ddd;
}

.score-board {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.start-btn {
    background: #85b04a;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
}
