:root {
    --color-body: #B892B8;
    --color-small-contents: #652e55;
    --color-headers: #BB95BB;
    --color-shadow: #482a44;
    --color-other-headers: #EE9A94;
    --color-fill: #FBEAF3;
    --color-text: #4b2946;
    --color-black: #000000;
    --color-white: #ffffff;
}
body {
    font-family: "Pixelify Sans", sans-serif;
    background-color: var(--color-body);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}

.game-container {
    position: absolute;
    top: 0;
    text-align: center;
    width: 250px;
    background-color: #EE9A94;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    border-radius: 8px;
    /* box-shadow: 4px 4px 0px #000, 8px 8px 0px #555; */
    padding: 5px;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.cell {
    width: 70px;
    height: 70px;
    background: var(--color-fill);
    border: 2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cell img {
    max-width: 100%;
    max-height: 100%;
}

.game-info {
    margin-top: 5px;
}

button {
    background-color: #000;
    color: #fff;
    border: none;
    padding:3px 4px;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background-color: #555;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background: #f8edd7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: "Pixelify Sans", sans-serif;
    font-size: 18px;
    color: #000;
}

#popup-close-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #f4cbb2;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#popup-close-btn:hover {
    background-color: #ff6b6b;
}
.score-board {
    margin-top: 4px;
    font-family: "Pixelify Sans", sans-serif;
    text-align: center;
    background: #f4cbb2;
    display: flex;
    justify-content: space-around;
    font-size: 12px;
}

.score-board span {
    font-weight: bold;
}
