:root {
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --bg-color: #f7f9fc;
  --text-color: #2d3436;
  --white: #ffffff;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 800;
}

#recommend-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  margin-bottom: 2rem;
}

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

#recommend-btn:active {
  transform: translateY(0);
}

#menu-display {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  animation: slideUp 0.5s ease-out;
}

.food-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  text-align: left;
}

.card-content h2 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.card-content p {
  margin: 0;
  color: #636e72;
  line-height: 1.6;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .food-img {
    height: 200px;
  }
}