/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.95);
  transition: background-color 0.3s ease;
  padding: 0 2.5rem;
  box-sizing: border-box;
  max-width: 100vw;
  height: 64px;
}

.site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.99);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--netflix-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.nav-link--icon {
  font-size: 0.8rem;
  gap: 0.3rem;
}

.nav-link--icon svg {
  flex-shrink: 0;
}

.logo-link {
  display: block;
  line-height: 0;
  padding: 0.35rem 0.8rem;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  width: 100px;
  height: auto;
  color: var(--sport-accent);
  transition: color 0.2s ease;
  line-height: 0;
}

.site-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-logo:hover {
  color: var(--netflix-white);
}

