/* game-board.css - Game board and cell styles */
.game-interface {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.game-board-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: none;
}

.game-board {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    will-change: transform;
    transform-origin: 0 0;
    cursor: default;
}

.cell {
    width: 28px;
    height: 28px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    user-select: none;
    color: #ffffff;
    border-radius: 2px;
}

.cell.hidden {
    background: #3d3d3d;
}

.cell.hidden:hover {
    background: #4d4d4d;
}

.cell.flagged::before {
    content: '⚑';
    color: #ef4444;
}

.cell.mine {
    background: #dc2626;
}

.cell.mine::before {
    content: '💣';
}

.cell.n1 { color: #60a5fa; }
.cell.n2 { color: #4ade80; }
.cell.n3 { color: #f87171; }
.cell.n4 { color: #c084fc; }
.cell.n5 { color: #fb923c; }
.cell.n6 { color: #22d3ee; }
.cell.n7 { color: #f472b6; }
.cell.n8 { color: #94a3b8; }