.home-link {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(240, 190, 95, 0.38);
  border-radius: 999px;
  color: #fff2cf;
  background: rgba(23, 12, 5, 0.68);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font: 650 13px Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
}

.home-link:hover {
  background: rgba(87, 37, 18, 0.76);
}

.home-link::before {
  content: "←";
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 720px) {
  .home-link {
    top: 12px;
    left: 12px;
  }
}
