.minesweeper .game-area{overflow:hidden}.minesweeper-grid{display:grid;grid-template-columns:repeat(var(--cols, 9),40px);gap:1px;background:#999;border:3px solid;border-color:#fff #808080 #808080 #fff;padding:3px;width:fit-content}.ms-cell{width:40px;height:40px;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;cursor:pointer;-webkit-user-select:none;user-select:none;background:silver;border:2px solid;border-color:#fff #808080 #808080 #fff}.ms-cell:active:not(.revealed):not(.flagged){border-color:gray;background:#bbb}.ms-cell.revealed{border:1px solid #808080;padding:1px;background:#d0d0d0}.ms-cell.mine{background:#f44}.ms-cell.flagged{font-size:22px}.ms-cell.n1{color:#00f}.ms-cell.n2{color:green}.ms-cell.n3{color:red}.ms-cell.n4{color:navy}.ms-cell.n5{color:maroon}.ms-cell.n6{color:teal}.ms-cell.n7{color:#000}.ms-cell.n8{color:gray}.victory-overlay.game-over h2{color:#f44}@media (max-width: 600px){.minesweeper-grid{width:100%;grid-template-columns:repeat(var(--cols, 9),minmax(0,1fr))}.ms-cell{width:auto;height:auto;min-width:0;min-height:0;aspect-ratio:1;overflow:hidden;font-size:clamp(14px,4vw,18px)}.ms-cell.flagged{font-size:clamp(16px,4.5vw,22px)}}@media (max-width: 800px){.minesweeper-grid[style*="--cols: 30"]{width:100%;grid-template-columns:repeat(30,minmax(0,1fr))}.minesweeper-grid[style*="--cols: 30"] .ms-cell{width:auto;height:auto;min-width:0;min-height:0;aspect-ratio:1;overflow:hidden;font-size:clamp(8px,1.8vw,12px)}.minesweeper-grid[style*="--cols: 30"] .ms-cell.flagged{font-size:clamp(10px,2vw,14px)}}
