@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400&display=swap');


/* ========== HEADER ========== */
.site-header {
  background: #15171c;
  color: #f8f8f8;
  border-bottom: 4px solid #f3c64b;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
}

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: inherit;
  text-decoration: none;
  font-family: 'PT Sans Narrow', sans-serif;  /* <- back to original logo font */
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-word {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  margin-left: -8px;
  margin-right: -8px;
}

.play-badge svg {
  width: 36px;
  height: 36px;
  display: block;
}

.play-badge .badge-rect {
  fill: #f3c64b;
  stroke: #b98d19;
  stroke-width: 6;
}

.play-badge .badge-play { fill: #050505; }

/* NAVIGATION */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-block;
  color: #f8f8f8;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-family: var(--font-head);
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover { background: rgba(255,255,255,0.1); color: #90caf9; }

/* THEME TOGGLE */
#theme-toggle {
  background: transparent;
  color: #f8f8f8;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

#theme-toggle:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 600px) {
  .header-inner { flex-direction: column; }
  .main-nav { margin-top: 0.5rem; }
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--muted);
}