
#game-container {
    text-align: center;
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
    /* background-image: url("../images/image.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow:0px 0px 6px 2px rgb(255 255 255);
}


#game-message {
    margin: 10px 0;
    font-size: 20px;
    padding: 10px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: bold;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(62 158 255) 10%, rgb(97 196 255) 80%, rgb(67 202 255) 50%);
}

#dots-container {
    position: relative;
    width: 100%;
    height: 600px;
    border: 2px solid #ccc;
    border-radius: 10px;
    /* background-color: #e9f5ff; */
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0px 0px 4px 1px rgb(255 255 255);
}

/* Har bir harfning uslubi */
.letter {
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background-color: #006eff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.letter.completed {
    background-color: green;
    color: white;
}

.letter:hover {
    transform: scale(1.2);
}

/* Harakatlanuvchi nuqta */
.dot {
    position: absolute;
    width: 40px;
    height: 40px;
    /* background-color: red; */
    border-radius: 50%;
    background-image: url("../images/icon.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Natija xabarining uslubi */
#result-message {
    margin-top: 10px;
    padding: 10px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 50px;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(62 158 255) 10%, rgb(97 196 255) 80%, rgb(67 202 255) 50%);
}

/* Qayta boshlash tugmasi */
button {
    padding: 10px 20px;
    font-size: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

button:hover {
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(62 158 255) 10%, rgb(97 196 255) 80%, rgb(67 202 255) 50%);
}

button.hidden{
    display: none;
}
