.confess-body {
  font-family: "Syne", Inter, system-ui, sans-serif;
}

.confessional-hero {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 0 20px;
  text-align: center;
}

.confessional-hero .eyebrow {
  color: #ffb347;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 14px;
}

.confessional-hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(44px, 8vw, 78px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.confessional-hero .sub {
  color: var(--dim);
  margin: 18px auto 0;
  max-width: 520px;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
}

.confess-form-wrap {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0 20px;
}

.confess-form {
  background: var(--panel);
  backdrop-filter: blur(30px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.confess-form textarea {
  width: 100%;
  min-height: 120px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  line-height: 1.5;
}

.confess-form textarea:focus {
  border-color: var(--accent);
}

.refused-row {
  margin-top: 14px;
}

.refused-label {
  color: var(--dim);
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

.refused-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.refused-tags label {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  cursor: pointer;
  color: var(--dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.refused-tags input {
  accent-color: var(--accent);
}

.refused-tags label:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 157, 0.08);
}

.confess-submit {
  margin-top: 16px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0a10;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
}

.confess-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.confess-hint {
  color: var(--dim);
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}

.answer-panel {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
}

.answer-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  white-space: pre-wrap;
  line-height: 1.65;
  font-size: 16px;
  font-family: "Instrument Serif", Georgia, serif;
}

.trailer-slot {
  margin-top: 20px;
  aspect-ratio: 9 / 16;
  max-width: 340px;
  background: #0a0a10;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 14px;
  margin-inline: auto;
  overflow: hidden;
  text-align: center;
  padding: 16px;
}

.trailer-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.share-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.share-row button,
.share-row a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  font-family: inherit;
}

.wall {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px 60px;
}

.wall h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 36px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.wall-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
  color: inherit;
  text-decoration: none;
  display: block;
}

.wall-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.wall-card .prompt {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.wall-card .teaser {
  color: var(--dim);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.5;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
}

.wall-card .meta {
  color: var(--dim);
  font-size: 11px;
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.refused-pill {
  display: inline-block;
  background: rgba(255, 77, 109, 0.12);
  color: var(--danger);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-transform: uppercase;
}

.detail {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px 60px;
}

.detail h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  margin: 12px 0 20px;
  line-height: 1.15;
}

.nav-links a.active {
  color: var(--accent);
}

.empty-wall {
  color: var(--dim);
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
}
