:root {
  --bg: #0f0f0f;
  --bg-elev: #1a1a1a;
  --text: #f4f1ea;
  --muted: #b8b0a3;
  --accent: #c99a4b;
  --accent-hover: #e4b568;
  --border: #2e2e2e;
  --radius: 10px;
  --max-width: 880px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--accent-hover);
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.95);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

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

.hero {
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.tagline {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 34ch;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background-color: var(--bg-elev);
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.platform-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  text-decoration: none;
}

.platform-card strong {
  font-size: 1.1rem;
  color: var(--text);
}

.platform-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.player {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.player iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--bg);
  background: var(--accent);
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
  text-decoration: none;
}

.youtube-channel {
  margin-top: 1.5rem;
}

.hosts {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hosts li {
  font-size: 1.1rem;
}

.socials {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.socials a {
  font-weight: 500;
}

.site-footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.domain-note {
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 520px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-list {
    gap: 1rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hosts {
    gap: 1rem;
  }
}
