/* Dopamine Static — shared stylesheet. No external fonts, no frameworks. */

:root {
  --bg: #0d0f12;
  --bg-raised: #14171c;
  --text: #e8e9ea;
  --text-dim: #9aa0a6;
  --accent: #b4f24c;
  --focus: #ff6b18;
  --noise: #00e5ff;
  --sleep: #b9a7ff;
  --border: #23262c;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Montserrat", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

header.site-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.logo span {
  color: var(--accent);
}

nav.top-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 16px;
  transition: color 0.15s ease;
}

nav.top-nav a:hover {
  color: var(--accent);
}

main {
  padding: 40px 0 80px;
}

.hero {
  padding: 12px 0 32px;
}

.hero h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0 0 14px;
}

.hero p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.hero .accent-word {
  color: var(--accent);
}

h1, h2, h3 {
  font-weight: 700;
  color: var(--text);
}

h2 {
  font-size: 1.4rem;
  margin: 2.4em 0 0.6em;
}

h3 {
  font-size: 1.1rem;
  margin: 1.6em 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}

ul, ol {
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.4em;
}

/* Lineup sections on the index page */
.lineup {
  border-top: 3px solid var(--lineup-color, var(--accent));
  background: var(--bg-raised);
  border-radius: 10px;
  padding: 24px;
  margin: 28px 0;
}

.lineup.focus { --lineup-color: var(--focus); }
.lineup.noise { --lineup-color: var(--noise); }
.lineup.sleep { --lineup-color: var(--sleep); }

.lineup h2 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lineup h2 .tag {
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--lineup-color, var(--accent));
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.lineup p.deck {
  color: var(--text-dim);
  margin-bottom: 18px;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.video-item:hover {
  border-color: var(--lineup-color, var(--border));
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.video-meta .video-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.video-meta a.watch {
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Streaming block */
.streaming {
  margin: 40px 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.streaming h2 {
  margin-top: 0;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.streaming-links a {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.streaming-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Which one is for you */
.scenario-box {
  margin: 40px 0;
  padding: 24px;
  background: var(--bg-raised);
  border-radius: 10px;
}

.scenario-box h2 {
  margin-top: 0;
}

.scenario-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.scenario-row:last-child {
  border-bottom: none;
}

.scenario-row .q {
  color: var(--text-dim);
}

.scenario-row .a {
  font-weight: 600;
  white-space: nowrap;
}

/* Articles */
.article-meta {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2em;
}

article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.92rem;
}

article th, article td {
  text-align: left;
  padding: 8px 10px;
  border: 1px solid var(--border);
}

article th {
  background: var(--bg-raised);
}

.faq-block {
  margin-top: 3em;
  padding-top: 1.5em;
  border-top: 1px solid var(--border);
}

.faq-item {
  margin-bottom: 1.4em;
}

.faq-item h3 {
  margin-bottom: 0.3em;
}

.inline-links {
  margin-top: 3em;
  padding: 20px;
  background: var(--bg-raised);
  border-radius: 10px;
}

.inline-links h3 {
  margin-top: 0;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  transition: opacity 0.15s ease;
}

.cta-button:hover {
  opacity: 0.85;
  text-decoration: none;
}

.cta-note {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 10px 0 0;
}

.article-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.article-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.article-card:hover {
  border-color: var(--accent);
}

.article-card .a-title {
  color: var(--text);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.article-card .a-dek {
  color: var(--text-dim);
  font-size: 0.9rem;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--text-dim);
  font-size: 0.85rem;
}

footer.site-footer a {
  color: var(--text-dim);
  transition: color 0.15s ease;
}

footer.site-footer a:hover {
  color: var(--accent);
}
