/* X-RATED Tribute Site */
:root {
  --bg: #141414;
  --bg2: #1c1c1c;
  --amber: #ede3cc;
  --amber-dim: #9a8f78;
  --text: #cccccc;
  --text-dim: #606060;
  --border: #242424;
  --glow: rgba(192, 192, 192, 0.05);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--amber); text-decoration: none; }
a:hover { text-shadow: 0 0 12px var(--amber); }
.container { max-width: 860px; margin: 0 auto; padding: 40px 24px; }

/* Header / Hero */
.hero {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.3;
}
.hero h1 {
  font-size: 2.5em;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--glow);
}
.hero .subtitle {
  color: var(--text-dim);
  font-size: 1.05em;
  margin-bottom: 12px;
}
.hero .years { color: var(--amber-dim); font-size: 0.9em; }

/* Tribute */
.tribute {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 40px;
  position: relative;
}
.tribute h2 {
  color: var(--amber);
  font-size: 1.3em;
  margin-bottom: 16px;
}
.tribute p { margin-bottom: 12px; }
.tribute .photo {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  margin: 0 auto 20px;
  display: block;
  border: 1px solid var(--border);
}
.tribute .names {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}
.tribute .name-card {
  text-align: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 140px;
}
.tribute .name-card .name { color: var(--amber); font-size: 1.15em; }
.tribute .name-card .lifespan { color: var(--text-dim); font-size: 0.85em; }

/* Episode list */
.episode-list { list-style: none; }
.episode-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.episode-item:hover { border-color: var(--amber-dim); }
.episode-date {
  color: var(--amber-dim);
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.episode-title {
  font-size: 1.05em;
  color: var(--text);
  margin-bottom: 12px;
}
.episode-player audio {
  width: 100%;
  margin-top: 8px;
  border-radius: 4px;
}

/* Footer */
.footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85em;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

/* Episode detail page */
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--amber-dim);
}
.back-link:hover { color: var(--amber); }
.episode-detail {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.episode-detail h1 {
  color: var(--amber);
  font-size: 1.5em;
  margin-bottom: 8px;
}
.episode-detail .meta {
  color: var(--text-dim);
  font-size: 0.9em;
  margin-bottom: 20px;
}
.episode-detail .notes {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.8em; }
  .container { padding: 20px 16px; }
  .tribute .names { flex-direction: column; align-items: center; }
}