/* 기본 레이아웃 */
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fafafa;
  color: #222;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  text-align: center;
}

/* 텍스트 */
.page-title {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.page-subtitle {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 14px;
  color: #555;
}

/* 버튼 공통 */
button {
  padding: 12px 20px;
  margin: 8px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}

/* 복주머니 메인 버튼 (나중에 일러스트/이미지로 교체 가능) */
.pouch-button {
  min-width: 200px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
}

/* 결과 화면 */
#result-section h2 {
  margin-top: 24px;
  font-size: 20px;
}

#fortune-desc {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}

#fortune-img {
  max-width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

.button-group {
  margin-top: 24px;
}

/* 유틸리티 */
.hidden {
  display: none;
}

/* 로딩 섹션 */
.loading-text {
  margin-top: 40px;
  font-size: 16px;
  color: #444;
}

.loading-spinner {
  margin: 16px auto 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #ddd;
  border-top-color: #555;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
