body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

#scene-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

#menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#menu h2 {
    margin-top: 0;
    color: #5d4037;
    text-align: center;
}

#menu ul {
    list-style-type: none;
    padding: 0;
}

#menu li {
    margin-bottom: 10px;
}

.menu-item {
    width: 100%;
    padding: 8px 15px;
    background-color: #8d6e63;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #5d4037;
}

#order-message {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    color: #5d4037;
    display: none;
    z-index: 10;
}

.speech-bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #5d4037;
    z-index: 20;
    max-width: 200px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    display: none;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

#css3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.window-view {
    width: 400px;
    height: 200px;
    background-color: rgba(200, 230, 255, 0.7);
    border: 10px solid #8B4513;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.rain-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rain-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1c3061, #467ab3);
    opacity: 0.8;
}

.rain-drops {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}



.raindrop {
    position: absolute;
    top: -20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.5));
    width: 1px;
    height: 15px;
    animation: dropFall linear infinite;
    opacity: 0.6;
    border-radius: 0 0 2px 2px;
}

@keyframes dropFall {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(300px);
    }
}


