body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #1e1e2e;
    color: white;
    padding: 20px;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
    font-weight: bold;
}

.scoreboard {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 15px;
    background: #282a36;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.game-container {
    background: #282a36;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

input {
    padding: 8px;
    font-size: 0.9rem;
    margin: 8px;
    border-radius: 5px;
    border: none;
    outline: none;
}

button {
    padding: 8px 15px;
    font-size: 0.9rem;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #e6b800;
}

p {
    font-size: 1rem;
    margin-top: 8px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.popup-content img {
    width: 150px;
    height: auto;
}

.popup-content p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.popup-content button {
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 1rem;
    font-weight: bold;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content button:hover {
    background: #e6b800;
}
