.background {
    background-color: #061a06; /* Dark forest green */
    min-height: 100vh;
}

.scoreboard {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #8bc34a;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    border: 1px solid rgba(139, 195, 74, 0.2);
}

.scoreboard i {
    margin-right: 10px;
    filter: drop-shadow(0 0 5px #8bc34a);
}

.controller-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 100%;
}

.game-btn {
    width: 65px;
    height: 65px;
    background: #1b3a1b;
    border: 2px solid #8bc34a;
    border-radius: 18px;
    color: #8bc34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 5px;
    cursor: pointer;
    box-shadow: 0 4px 0 #0a240a;
    transition: 0.1s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.game-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #0a240a;
    background: #8bc34a;
    color: #061a06;
}

.menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(6, 26, 6, 0.95);
    padding: 30px;
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    z-index: 1000;
    border: 2px solid #8bc34a;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.menu-option {
    display: inline-block;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin: 8px;
    cursor: pointer;
    color: #fff;
    width: 120px;
    border: 1px solid rgba(139, 195, 74, 0.2);
    transition: 0.2s;
}

.menu-option:hover {
    background: #8bc34a;
    color: #061a06;
}

@media (max-width: 576px) {
    .game-btn { width: 55px; height: 55px; font-size: 22px; }
    .scoreboard { font-size: 18px; }
}
