/**
 * MENÜ-VISUALS — Gruppe "wettkampf" (Quiz-Spiele)
 * Visual der Kachel(n) im Gruppenmenü. Farbe/Layout der Kachel selbst
 * kommen aus global/ui/menu-buttons.css (.big-menu-btn.red).
 */

.big-menu-btn.red { overflow: hidden; }

.visual-quiz-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

/* Mini-Scoreboard */
.vqg-board {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0,0,0,0.35);
    border: 3px solid white;
    border-radius: 12px;
    padding: 6px 18px;
    font-weight: 900;
    font-size: clamp(24px, 5vw, 38px);
    color: white;
    line-height: 1;
}
.vqg-sep { opacity: 0.85; }

/* Modus-Symbole (Fußball / Pferderennen) */
.vqg-modes {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: clamp(30px, 7vw, 50px);
    line-height: 1;
}
