@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&display=swap');

#navblob {
  position: fixed;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#navblob.nav-hidden {
  opacity: 0;
  transform: translateY(-6px);
}

#navblob.nav-visible {
  opacity: 1;
  transform: translateY(0);
}

#navblob a img,
#navblob > img {
  display: block;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  filter: brightness(0) invert(var(--brightness));
  transition: var(--transition);
  cursor: pointer;
}

#navblob a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

#navblob a:first-child img {
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  filter: none;
  object-fit: contain;
}

#navblob a:first-child:hover img {
  background: none;
  border: none;
  transform: scale(1.05) rotate(5deg);
}

#navblob a:hover img,
#navblob > img:hover {
  background: var(--accent-muted);
  border-color: var(--accent);
  transform: scale(1.1);
}

@media (max-width: 720px) {
  #navblob {
    top: 12px;
    left: 12px;
    padding: 6px;
  }
  #navblob a img,
  #navblob > img {
    width: 32px;
    height: 32px;
  }
  #navblob a:first-child img {
    width: 32px;
    height: 32px;
  }
}
