/* styles.css */
body {
    font-family: sans-serif;
    background-color: #f2f2f2;
    margin: 0;
}
.container {
    width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    text-align: center;
    color: #333;
}
.options {
    text-align: center;
    margin-bottom: 20px;
}
#difficulty {
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#startGame {
    padding: 5px 20px;
    font-size: 16px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
#startGame:hover {
    background-color: #0069d9;
}
.game {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.score {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin-bottom: 20px;
}
#minefield {
    display: grid;
    grid-gap: 1px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
}
.cell {
    width: 30px;
    height: 30px;
    background-color: #f2f2f2;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cell:hover {
    background-color: #e0e0e0;
}
.result {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}
#minefield .revealed {
    color: #0000CD;
}