.bingo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 20px; max-width: 480px; margin: 0 auto; }
.bingo-cell { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; cursor: pointer; transition: all .15s; }
.bingo-cell:hover { border-color: var(--border2); background: var(--bg3); }
.bingo-cell.filled { background: rgba(0,214,127,.1); border-color: rgba(0,214,127,.3); }
.bingo-cell.locked { opacity: .5; cursor: not-allowed; }
.cell-icon { font-size: 20px; margin-bottom: 6px; }
.cell-label { font-size: 10px; color: var(--text2); }
.cell-player { font-size: 11px; color: var(--green); margin-top: 4px; font-weight: 600; }
.player-card { max-width: 400px; margin: 20px auto; padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
#pc-avatar { font-size: 48px; margin-bottom: 8px; }
#pc-name { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
#pc-meta { font-size: 12px; color: var(--text3); display: flex; gap: 8px; justify-content: center; }
.game-stats { display: flex; gap: 16px; justify-content: center; padding: 16px; font-size: 13px; color: var(--text2); }
#msg-bar { text-align: center; padding: 12px; font-size: 13px; min-height: 40px; }
#prog-bar { max-width: 400px; margin: 0 auto 20px; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
#prog-fill { height: 100%; background: var(--green); transition: width .3s; width: 0%; }
#end-screen { padding: 40px 20px; text-align: center; }
#end-emoji { font-size: 64px; margin-bottom: 16px; }
#end-title { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
#end-sub { font-size: 14px; color: var(--text3); margin-bottom: 24px; }
#end-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; max-width: 200px; margin: 24px auto; }
.eg-cell { aspect-ratio: 1; font-size: 24px; display: flex; align-items: center; justify-content: center; }
#bingo-flash { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 72px; font-weight: 700; color: var(--green); opacity: 0; pointer-events: none; transition: opacity .3s; }
#bingo-flash.show { opacity: 1; animation: flash-bingo .8s; }
@keyframes flash-bingo { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.2); } }
