/* ── Coverflow button overrides ─────────────────────────────────── */

.vf-controls button {
  width: 40px;
  height: 40px;
}


/* ── Push "All albums" back button below the fixed header ────────── */

.vf-back {
  top: calc(1.5rem + 100px);
}

/* ── Header ─────────────────────────────────────────────────────── */

.km-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ── Nav lists ──────────────────────────────────────────────────── */

.km-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.km-nav a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.km-nav a:hover {
  opacity: 1;
}

/* ── Logo ───────────────────────────────────────────────────────── */

.km-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
