body {
    font-family: 'Helvetica Neue', 'Noto Sans KR', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
}

.container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

#recommend-btn {
    background-color: #ff7675;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 118, 117, 0.3);
}

#recommend-btn:hover {
    background-color: #d63031;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 118, 117, 0.4);
}

#result-container {
    margin-top: 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#menu-display {
    font-size: 1.8em;
    font-weight: bold;
    color: #2d3436;
    margin-bottom: 20px;
}

#image-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: opacity 0.5s ease;
}

#image-container.hidden {
    display: none;
    opacity: 0;
}

#menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}