@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;1,300&family=Bebas+Neue&display=swap');

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

:root {
  --bg: #0a0a08;
  --surface: #111110;
  --border: #222220;
  --text: #e8e6e0;
  --muted: #555550;
  --accent: #e8c84a;
  --danger: #e85a3a;
  --ok: #4ae88a;
}

html { min-height: 100%; background: var(--bg); }
body { background: var(--bg); color: var(--text); font-family: 'IBM Plex Mono', monospace; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
}

/* Header */
header { padding: 28px 40px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.1em; text-decoration: none; color: var(--text); }
.wordmark span { color: var(--accent); }
.header-back { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.header-back:hover { color: var(--text); }

/* Layout */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 0 40px; }

/* Buttons */
.play-btn { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); background: none; border: 1px solid var(--accent); padding: 7px 16px; transition: all 0.15s; display: inline-block; text-decoration: none; }
.play-btn:hover { background: var(--accent); color: var(--bg); }

/* Section labels */
.section-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 80px; }

/* Footer */
footer { padding: 28px 40px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-note { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; }
.footer-link { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: var(--text); }

/* Mobile */
@media (max-width: 700px) {
  header, footer { padding-left: 20px; padding-right: 20px; }
  .page-wrap { padding: 0 20px; }
}
