*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: system-ui, -apple-system, sans-serif;
  background: #1a0a24;
  color: #e8e4ec;
}

body {
  padding: 2rem 1.5rem 3rem;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.detail-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.back-link {
  color: #b8a0d0;
  text-decoration: none;
  font-size: 0.95rem;
}

.back-link:hover {
  text-decoration: underline;
}

.detail-content {
  max-width: 640px;
  line-height: 1.6;
}

.detail-content p {
  margin: 0 0 1rem;
  color: #c8c0d4;
}
