body {
  background: linear-gradient(135deg, #FDF8F3 0%, #F5EDE4 100%);
}

.loading-dot {
  animation: bounce 1.4s infinite ease-in-out both;
}
.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.expert-card {
  transition: all 0.3s ease;
}
.expert-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.15);
}

.result-section {
  animation: fadeInUp 0.6s ease-out;
}

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

.markdown-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D2D2D;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #C9A962;
}

.markdown-content h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2D2D2D;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.markdown-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.markdown-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.markdown-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.markdown-content ul li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #C9A962;
}

.markdown-content strong {
  color: #A88B4A;
  font-weight: 600;
}

.markdown-content blockquote {
  border-left: 4px solid #C9A962;
  padding-left: 1rem;
  margin: 1rem 0;
  background: rgba(201, 169, 98, 0.08);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.expert-dialogue {
  background: linear-gradient(to right, rgba(201, 169, 98, 0.05), transparent);
  border-left: 3px solid #C9A962;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}
