:root {
  --bcn-nav-bg: #9fc8d2;
  --bcn-nav-text: #1f2a3a;
  --bcn-nav-muted: #3b4f68;
  --bcn-nav-active: #284d9a;
  --bcn-nav-border: rgba(31, 42, 58, 0.16);
}

@keyframes bcnPageIntro {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

html {
  background: #eef2f6;
}

body {
  opacity: 0;
  transform: translateY(10px);
  animation: bcnPageIntro 0.95s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.bcn-topnav {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(90deg, rgba(159, 200, 210, 0.98), rgba(178, 212, 221, 0.94));
  border-bottom: 1px solid var(--bcn-nav-border);
  min-height: 74px;
}

.bcn-topnav-inner {
  max-width: 1320px;
  padding: 0 14px;
}

.bcn-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.bcn-brand-logo {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  object-fit: contain;
}

.bcn-nav-toggler {
  border: 0;
  box-shadow: none !important;
}

.bcn-nav-bars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #1f2a3a;
}

.bcn-nav-links {
  gap: 6px;
}

.bcn-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bcn-nav-text);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px !important;
  border-radius: 10px;
  transition: color .15s ease, background-color .15s ease;
}

.bcn-nav-link svg,
.bcn-icon-btn svg,
.bcn-profile-btn svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.bcn-nav-link:hover {
  color: var(--bcn-nav-active);
  background: rgba(255, 255, 255, 0.25);
}

.bcn-nav-link.is-active {
  color: var(--bcn-nav-active);
  font-weight: 400;
}

.bcn-nav-right {
  min-height: 40px;
}

.bcn-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--bcn-nav-muted);
}

.bcn-pill {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  padding: 0 4px;
  background: #d11f38;
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bcn-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--bcn-nav-text);
  padding: 6px 10px;
}

.bcn-topnav .btn-primary {
  background-color: #0f4c81;
  border-color: #0f4c81;
  color: #ffffff;
}

.bcn-topnav .btn-primary:hover,
.bcn-topnav .btn-primary:focus {
  background-color: #0c3e69;
  border-color: #0c3e69;
  color: #ffffff;
}

.bcn-topnav .btn-outline-primary {
  color: #0f4c81;
  border-color: #0f4c81;
  background-color: #ffffff;
}

.bcn-topnav .btn-outline-primary:hover,
.bcn-topnav .btn-outline-primary:focus {
  color: #ffffff;
  background-color: #0f4c81;
  border-color: #0f4c81;
}

@media (max-width: 991.98px) {
  .bcn-topnav {
    min-height: 60px;
  }

  .bcn-brand-logo {
    height: 36px !important;
    max-height: 36px !important;
  }

  .bcn-nav-links {
    margin-top: 6px;
    gap: 2px;
  }

  .bcn-nav-link {
    padding: 8px 8px !important;
    font-size: 13px;
  }

  .bcn-nav-right {
    margin-top: 6px;
    padding-bottom: 8px;
  }
}
