body {
    text-align: center;
    background-color: #fff8e1;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 20px;
}

#game {
    margin-top: 20px;
    position: relative;
}

#coco {
    width: 50%;
    max-width: 300px;
    height: auto;
    animation: idleAnimation 2s infinite;
}

@keyframes idleAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

#stats {
    font-size: 20px;
    margin-top: 15px;
}

#actions button {
    padding: 10px 15px;
    font-size: 16px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #ffcc80;
    color: #5d4037;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 100px auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#shopItems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-item {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 10px;
    width: 120px;
}

.shop-item img {
    width: 100%;
    height: auto;
}

.shop-item button {
    margin-top: 5px;
    width: 100%;
}

.emoji {
    position: absolute;
    font-size: 30px;
    animation: flyAway 2s forwards;
    left: 50%;
    top: 40%;
}

@keyframes flyAway {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -100px); }
}
