.navbar.svelte {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5vw 2.5vw;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.navbar-container.svelte {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0a051980;
  border-radius: 16px;
  padding: 12px 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .1);
  height: auto;
  box-shadow: 0 8px 32px #0003;
  transition: all .3s ease;
  animation: SlideDown 0.35s ease;
}

.logo.svelte {
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  transition: all .3s ease;
  flex-shrink: 0;
}

.logo.svelte img {
  width: 55px;
  height: 55px;
}

.desktop-only.svelte {
  display: flex;
  flex-wrap: wrap;
}

.nav-links.svelte {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-wrap: wrap;
}

.nav-link.svelte {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 10px;
  position: relative;
  transition: all .2s ease;
  cursor: pointer;
}

.nav-link.svelte:hover {
  color: #fff;
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
  transform: scale(1.05);
}

.top-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(13, 74, 156, 0.15);
  border-bottom: 1px solid rgba(13, 74, 156, 0.3);
  backdrop-filter: blur(6px) saturate(120%);
  color: #dbe9ff;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 8px 0;
  animation: SlideDown 0.35s ease;
  box-shadow: 0 2px 10px rgba(5,22,50,0.25);
}

.top-warning-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-warning .icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-weight: 700;
  font-size: 12px;
  color: #e8f2ff;
  border-radius: 50%;
  border: 1px solid rgba(100,160,255,0.35);
  background: radial-gradient(circle at 30% 30%, rgba(120,180,255,0.35), rgba(10,40,90,0.6));
  box-shadow: 0 0 6px rgba(80,140,255,0.3), inset 0 0 4px rgba(120,180,255,0.2);
  text-shadow: 0 0 6px rgba(150,200,255,0.6);
  font-family: "Inter", system-ui, sans-serif;
  transform: translateY(-0.5px);
}

.top-warning .icon {
  color: #b8d4ff;
}

.top-warning .text strong {
  color: #ffffff;
  font-weight: 600;
}

.navbar.svelte {
  top: 32px;
}

@keyframes SlideDown {
  from { transform: translateY(-8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}