body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
}

h1 {
    color: #333;
}

#stats {
    margin-bottom: 10px;
}

#game {
    display: inline-grid;
    grid-template-columns: repeat(10, 40px);
    gap: 5px;
    margin-top: 20px;
    position: relative;
}

.cell {
    width: 40px;
    height: 40px;
    background-color: #bbb;
    border: 1px solid #999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.cell.revealed {
    background-color: #ddd;
    cursor: default;
}

.cell.mine {
    background-color: red;
}

.cell.flagged {
    background-color: yellow;
}

.explode {
    animation: explode 1s forwards;
}

@keyframes explode {
    to {
        transform: translate(var(--x, 0), var(--y, 0)) rotate(720deg);
        opacity: 0;
    }
}

#reset {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
