    body { margin: 0; font-family: 'Quicksand', sans-serif; background: var(--bg); overflow: hidden; touch-action: manipulation; }

/* Badger Game Specific Styles */
#game-container { 
    position: relative; 
    width: 400px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
}

canvas { 
    display: block; 
    border-radius: 20px; 
    background: white; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.stats-bar {
    color: #1e293b;
    margin: 15px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    text-align: center;
}

.score-display {
    position: absolute; 
    top: 20px; 
    left: 20px;
    font-size: 24px; 
    font-weight: 700; 
    color: var(--badger-main);
}

#combo-ui { 
    position: absolute; 
    top: 20px; 
    right: 20px;
    background: #e0f2fe; 
    color: #0369a1; 
    padding: 4px 12px; 
    border-radius: 20px;
    font-size: 14px; 
    transition: all 0.2s ease; 
    transform: scale(0);
}
#combo-ui.active { transform: scale(1); }

/* Menus and Overlays */
.overlay {
    position: absolute; top: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.98);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    border-radius: 20px; z-index: 10; text-align: center; padding: 20px; box-sizing: border-box;
}

.btn { 
    width: 80%; padding: 15px; color: white; border: none; border-radius: 15px; 
    cursor: pointer; font-family: 'Quicksand'; font-weight: 700; margin: 8px 0; 
    transition: all 0.2s ease; font-size: 16px;
}

/* Button Variants using CSS Variables */
.btn-wellness { 
    background: var(--accent-green); 
    box-shadow: 0 4px 0 #059669; 
}
.btn-arcade { 
    background: var(--accent-blue); 
    box-shadow: 0 4px 0 #0284c7; 
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.mode-desc { font-size: 13px; color: #94a3b8; margin-top: -5px; margin-bottom: 10px; }