.dj-credit {
  position: fixed;
  z-index: 110;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  display: grid;
  gap: 3px;
  min-width: 184px;
  padding: 9px 12px 8px;
  color: #24231e;
  background: rgb(244 236 212 / 95%);
  border: 1px solid #36342a;
  border-radius: 3px;
  box-shadow: 2px 3px 0 rgb(28 27 23 / 78%);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.dj-credit:hover {
  background: #fff6de;
  box-shadow: 3px 5px 0 rgb(28 27 23 / 78%);
  transform: translateY(-2px);
}

.dj-credit:focus-visible {
  outline: 3px solid #f3cd51;
  outline-offset: 4px;
}

.dj-credit-made {
  font: 700 11px/1.2 Karla, sans-serif;
  letter-spacing: .035em;
}

.dj-credit-made span {
  color: #df777b;
  font-size: 13px;
}

.dj-credit-follow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 600 9px/1.2 Karla, sans-serif;
  letter-spacing: .04em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .dj-credit {
    right: calc(10px + env(safe-area-inset-right, 0px));
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    min-width: 158px;
    gap: 2px;
    padding: 7px 9px;
  }

  .dj-credit-made { font-size: 10px; }
  .dj-credit-follow { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .dj-credit { transition: none; }
}
