#game-area {
    width: 100%;
    height: 60vh; 
    background-image: url('https://yarenkizilgedik.com/oyun/nota-avcisi/images/background.webp');
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat; 
    border: 2px solid #000;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.note {
    position: absolute;
    width: 10vw;  
    height: 10vw; 
    max-width: 90px; 
    max-height: 90px; 
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    cursor: pointer;
    left: 50%; 
    transform: translateX(-50%); 
}

#scoreboard {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

@keyframes drop {
    from {
        top: -60px;
    }
    to {
        top: 100%;
    }
}

#task-list {
    display: flex;
    justify-content: center; 
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-align: center;
}

#task-list p {
    margin: 0;
    padding: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    flex: 1 1 calc(20% - 20px); 
    min-width: 100px; 
    justify-content: center;
    text-align: center;
    border: 1px solid black;
}

#task-list img {
    width: 30px; 
    height: 30px; 
    margin-left: 10px;
    border-radius: 50%;
}

#task-list span {
    margin-left: 10px;
}

#task-list h5 {
    text-align: center; 
    width: 100%; 
    margin: 0; 
    padding: 0; 
    font-size: 18px; 
    font-weight: bold; 
    display: block; 
}

@media (max-width: 768px) {
    #task-list p {
        flex: 1 1 calc(20% - 10px); 
    }

    .note {
        width: 15vw; 
        height: 15vw; 
        max-width: 70px; 
        max-height: 70px; 
    }
}

@media (max-width: 480px) {
    #task-list p {
        flex: 1 1 calc(20% - 10px); 
    }

    .note {
        width: 20vw; 
        height: 20vw; 
        max-width: 60px; 
        max-height: 60px; 
    }
}

.modal-body ul {
    list-style-type: none;
    padding: 0;
}

.modal-body ul li {
    font-size: 1rem;
    margin: 5px 0;
}
