.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  color: #000;
  padding: 0.5em 1em;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-120%);
  transition: transform 0.2s, box-shadow 0.2s;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;

  &:focus, &:focus-visible {
    transform: translateY(0);
    outline: 2px solid #1976d2;
    outline-offset: 2px;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
    box-shadow: 0 2px 16px rgba(25,118,210,0.15);
  }

  @media (forced-colors: active) {
    &:focus, &:focus-visible {
      outline: 2px solid Highlight;
      background: Canvas;
      color: CanvasText;
      box-shadow: none;
    }
  }
}