@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");

:root {
  --primary-color: #ff6b6b;
  --bg-color: #fff9f9;
  --text-color: #333;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
  max-width: 450px;
  width: 90%;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.recommendation-box {
  background-color: #fff5f5;
  border: 2px dashed #ffbaba;
  padding: 3rem 1.5rem;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.result-display {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.category-display {
  font-size: 1.1rem;
  color: #ff6b6b;
  font-weight: 500;
  height: 1.5rem;
}

.recommend-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.recommend-btn:hover:not(:disabled) {
  background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.recommend-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

.recommend-btn:disabled {
  background-color: #ffbaba;
  cursor: not-allowed;
}

.home-link {
  display: inline-block;
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.home-link:hover {
  color: var(--primary-color);
}