body, html {
    height: 100%;
    margin: 0;
    background-color: #282c34; /* Yangi background rang */
    color: #61dafb; /* Yangi matn rangi */
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #20232a; /* O'yin konteyneri fon rangi */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#tap-circle {
    background-color: #ffcc00; /* Yangi dumaloq rang */
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px 2px #ffcc00;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.3s;
    outline: none; /* Outline yo'q qilindi */
}

#tap-circle:focus {
    outline: none; /* Outline yo'q qilindi */
    outline-offset: 0; /* Outline offset yo'q qilindi */
}

#tap-circle:hover {
    box-shadow: 0 0 25px 5px #ffcc00;
}

#tap-circle .coin {
    font-size: 5rem;
    color: #20232a; /* Coin matn rangi */
    pointer-events: none; /* Bosilmaydigan qilish */
}

#circle-text {
    position: absolute;
    bottom: 10px;
    font-size: 2rem;
    color: #20232a; /* Counter matn rangi */
    pointer-events: none; /* Bosilmaydigan qilish */
}

#coin-counter {
    margin-bottom: 20px;
    font-size: 3rem;
}

#buttons-container {
    display: flex;
    margin-top: 20px;
}

#buttons-container button {
    margin: 0 10px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #444;
    border: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

#buttons-container button::after {
    content: '';
    background: #fff;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px !important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s;
}

#buttons-container button:hover, #buttons-container button:focus, #buttons-container button:active {
    box-shadow: 0 0 10px 0 #fff;
    outline: none;
}

#buttons-container button:hover::after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}

#buttons-container button:active::after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transform: scale(1);
    transition: 0s;
}

/* Mobil qurilmalar uchun stilizatsiya */
@media (max-width: 600px) {
    #tap-circle {
        width: 50vw;
        height: 50vw;
        max-width: 200px;
        max-height: 200px;
    }

    #tap-circle .coin {
        font-size: 3rem;
    }

    #circle-text, #coin-counter {
        font-size: 1.5rem;
    }

    #buttons-container button {
        font-size: 0.6rem;
        padding: 5px 5px;
        margin: 3px;
        border-radius: 50px;
        color: #000;
        background-color: #f5de5f;
    }
}

/* Tablet va kichik ekranli noutbuklar uchun stilizatsiya */
@media (min-width: 601px) and (max-width: 1024px) {
    #tap-circle {
        width: 150px;
        height: 150px;
    }
}

/* Katta ekranli qurilmalar uchun stilizatsiya */
@media (min-width: 1025px) {
    #tap-circle {
        width: 200px;
        height: 200px;
    }
}
