.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  overflow: hidden;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  transition: none;
}

.skip-link:focus-visible {
  position: fixed;
  top: 0.5rem;
  left: 50%;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  clip: auto;
  background: var(--mainbackground);
  color: var(--text);
  font-family: var(--ff-base);
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%);
  white-space: nowrap;
}