/* 数据置顶、棋盘与陪玩伙伴并排的比赛布局。 */
.player{grid-template-columns:minmax(0,1fr) 150px;grid-template-areas:"title title" "stats stats" "board buddy" "touch touch";align-items:start}.player h2{grid-area:title}.player .side{grid-area:stats;display:flex;align-items:center;gap:12px;min-width:0}.player .stats{display:grid;grid-template-columns:repeat(4,minmax(78px,1fr));flex:1}.player .next-title{margin:0;white-space:nowrap}.player .next{width:70px;height:70px}.player .board{grid-area:board}.player .buddy{grid-area:buddy;margin:0;align-self:center;justify-self:center;display:flex;flex-direction:column}.player .buddy canvas{width:140px;height:140px}.player .buddy span{max-width:140px;text-align:center}.player .touch-controls{grid-area:touch;justify-content:center;grid-template-columns:repeat(3,58px);margin-top:5px}.player .touch-controls button{width:58px;min-height:52px;border-radius:10px;box-shadow:0 3px 0 #0b1020}.player .touch-controls button[data-action="drop"]{grid-column:1/-1;margin-top:8px;min-height:55px;border:2px solid #a993ff;background:#6847cf;letter-spacing:2px}.result-overlay{position:fixed;inset:0;z-index:20;display:grid;place-items:center;background:rgba(5,8,17,.7);backdrop-filter:blur(3px)}.result-overlay[hidden]{display:none}.result-overlay span{padding:18px 24px;border:3px solid #fff;border-radius:12px;background:#171e2e;font:900 clamp(28px,9vw,64px)/1 monospace;letter-spacing:4px;text-shadow:4px 4px 0 #7c5cff}.result-overlay.loss span{border-color:#ff7185;color:#ff8b9a;text-shadow:3px 3px 0 #5d2634;font-size:clamp(22px,7vw,48px);letter-spacing:1px}@media(max-width:720px){.player{grid-template-columns:minmax(0,1fr) 120px;gap:7px}.player .stats{grid-template-columns:repeat(4,1fr);gap:4px}.player .stats div{padding:4px;font-size:10px}.player .stats b{font-size:14px}.player .next-title,.player .next{display:none}.player .buddy canvas{width:112px;height:112px}.player .buddy span{font-size:10px;max-width:112px}.player .touch-controls{grid-template-columns:repeat(3,54px)}.player .touch-controls button{width:54px}}@media(max-width:365px){.player{grid-template-columns:1fr}.player .buddy{grid-area:board;justify-self:end;opacity:.92;pointer-events:none}.player .buddy canvas{width:86px;height:86px}.player .buddy span{display:none}}
