body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #e6f0ff;
    color: #222;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4a90e2;
    padding: 10px;
    color: white;
}

.logo {
    width: 50px;
}

button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #4a90e2;
    color: white;
    font-weight: bold;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 60px);
    grid-template-rows: repeat(5, 60px);
    gap: 5px;
    justify-content: center;
    margin: 20px auto;
    background: #b3d4fc;
    padding: 10px;
    border-radius: 10px;
}

.tile {
    width: 60px;
    height: 60px;
    background: #0073e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    color: white;
}

.tile.clicked {
    background: #ffd700;
}

.tile.mine {
    background: #ff6b6b;
}

#loseScreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: bold;
    color: red;
    display: none;
}
