/* ===== Add these to your style.css ===== */

/* Spinner */
.spinner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  color: var(--text-light, #888);
  font-size: 0.9rem;
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: #e60023;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Result card */
.result-card {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
}
.result-thumb {
  max-width: 100%;
  max-height: 260px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 14px;
}
.result-title {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.4;
}
.download-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-dl-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e60023;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-dl-link:hover { background: #c0001d; }

/* Error area */
.error-msg {
  color: #c0001d;
  background: #fff0f2;
  border: 1px solid #ffd0d6;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
}

/* FAQ open state */
.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 12px 20px 20px;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-arrow {
  transition: transform 0.3s ease;
}
