:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #050505;
  color: #aaaaaa;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.page {
  width: min(760px, 100%);
  background: radial-gradient(circle at top left, #1a1a1a, #0a0a0a);
  border: 2px solid #222222;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 0 35px rgba(123, 44, 191, 0.5), inset 0 0 20px rgba(123, 44, 191, 0.15);
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #9d4edd;
  border-bottom: 1px dotted #9d4edd;
  text-decoration: none;
}

.entry-header {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(123, 44, 191, 0.25);
}

.entry-kicker {
  margin: 0 0 0.35rem;
  color: #9d4edd;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #e0e0e0;
  text-shadow: 0 0 10px #7b2cbf, 0 0 20px #7b2cbf;
  letter-spacing: 2px;
  font-size: 1.7rem;
}

.entry-meta {
  margin: 0.4rem 0 0;
  color: #c77dff;
  font-size: 0.9rem;
}

.entry-intro {
  margin: 1rem 0 1.2rem;
  padding: 0.95rem 1rem;
  border-left: 3px solid #9d4edd;
  background: rgba(123, 44, 191, 0.08);
  border-radius: 8px;
  color: #e0aaff;
  line-height: 1.6;
}

.audio-player {
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(5, 5, 5, 0.45);
  border: 1px solid rgba(123, 44, 191, 0.35);
}

.audio-player audio {
  width: 100%;
  outline: none;
}

.audio-player audio::-webkit-media-controls-panel {
  background: rgba(15, 15, 15, 0.95);
}

.audio-player audio::-webkit-media-controls-play-button,
.audio-player audio::-webkit-media-controls-volume-slider-container,
.audio-player audio::-webkit-media-controls-current-time-display,
.audio-player audio::-webkit-media-controls-time-remaining-display {
  filter: hue-rotate(280deg) saturate(1.2);
}

.entry-body p {
  line-height: 1.75;
  color: #cfcfcf;
  margin: 0 0 1rem;
  white-space: pre-line;
}

.entry-body p:last-child {
  margin-bottom: 0;
}

.entry-body a {
  color: #c77dff;
  text-decoration: none;
}

.entry-body a:hover {
  text-shadow: 0 0 8px #c77dff;
}
