body{
    margin: 0;
    font-family:sans-serif;
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#lobby{
    position: fixed;
    inset: 0;
    background: white;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pet-list{
    display: flex;
    gap: 20px;
}

.pet-card{
    border: 2px solid #333;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
}

.pet-card img{
    width: 100px;
    height: 100px;
}

#restaurant-scene{
    display: none;
    width: 1000px;
    height: 600px;
    position: relative;
    background: #87ceeb;
}

.building{
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 600px;
    height: 450px;
    background: #a52a2a;
    border: 5px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.window{
    width: 500px;
    height: 300px;
    background: #34495e;
    border: 10px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px;
    position: relative;
}

.character-slot img{
    width: 150px;
    height: 150px;
}

.bubble{
    background: white;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: bold;
    font-weight: bold;
    border: 2px solid #333;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-board{
    position: absolute;
    right: 50px;
    top: 150px;
    width: 200px;
    background: #f1c40f;
    padding: 20px;
    border: 5px solid #333;
    text-align: center;
}

select, button{
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-weight: bold;
}

.dance{
    animation: bounce 0.5s infinite;
}

@keyframes bounce {
    0%, 100%{transform: translateY(0) rotate(0);}
    50%{transform: translateY(-20px) rotate(5deg);}
}