* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #120008 0%, #06000a 60%, #000 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: 'Cinzel', serif;
  color: #e8d5d5;
  padding: 2rem 1rem 3rem;
}

#wrap {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Back link ── */
.back-link {
  color: rgba(180, 140, 140, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}
.back-link:hover { color: rgba(220, 180, 180, 0.8); }

/* ── Header ── */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: var(--red-strong);
  text-shadow: 0 0 25px var(--red-glow), 0 2px 4px rgba(0,0,0,0.8);
  font-weight: 400;
}

img.deco {
  height: 24px;
  width: auto;
  opacity: 0.7;
  filter: drop-shadow(0 0 6px rgba(140, 80, 0, 0.3));
}

@media (min-width: 480px) {
  img.deco { height: 28px; }
}

/* ── Schedule items ── */
#schedule-container {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(160, 80, 0, 0.15);
}

.schedule-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(160, 80, 0, 0.1);
  opacity: 0;
  animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}

.schedule-time {
  font-size: 0.88rem;
  color: rgba(200, 150, 80, 0.85);
  letter-spacing: 0.06em;
  min-width: 48px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 480px) {
  .schedule-time { font-size: 0.95rem; min-width: 56px; }
}

.schedule-sep {
  color: rgba(140, 80, 20, 0.4);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.schedule-desc {
  font-size: 0.95rem;
  color: #d8c5c5;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .schedule-desc { font-size: 1rem; }
}

/* ── Empty state ── */
.cloud-empty {
  padding: 2.5rem 0;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(160, 120, 0, 0.4);
  letter-spacing: 0.05em;
}
