:root {
  color-scheme: dark;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 16, 0.85);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.topbar__brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #eef2f8;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.topbar__links a {
  text-decoration: none;
  color: #c7d4e8;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.topbar__links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.topbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c4cad8;
  font-size: 0.95rem;
}

.topbar__lang select {
  background: rgba(9, 11, 18, 0.85);
  color: #eef2f8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 10px;
}
