@import url("site-base.css");

/**
 * Tüm iç sayfalarda ortak üst "Menüye Dön" bağlantısı (hap / pill).
 */
a.nav-to-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.45rem;
  margin-bottom: 14px;
  border-radius: 999px;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #4d3f50;
  background: linear-gradient(180deg, #fbfdff 0%, #eef4fb 100%);
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

a.nav-to-menu:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  color: #3a2f3d;
}

a.nav-to-menu:focus-visible {
  outline: 2px solid rgba(100, 140, 190, 0.45);
  outline-offset: 2px;
}

a.nav-to-menu:active {
  transform: scale(0.98);
}

a.nav-to-menu .nav-to-menu__arr {
  font-size: 1.08em;
  line-height: 1;
  opacity: 0.92;
}

@media (max-width: 480px) {
  a.nav-to-menu {
    max-width: calc(100vw - 28px);
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    box-sizing: border-box;
  }
}

/* Tam ekran canvas / oyun: sol üst, mutlak konum */
a.nav-to-menu.nav-to-menu--dock {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 25;
  margin-bottom: 0;
  pointer-events: auto;
}

/* Sayfa kaydırılırken üstte sabit */
a.nav-to-menu.nav-to-menu--fixed {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  margin-bottom: 0;
}

/* Minecraft vb. başlangıç katmanının üzerinde */
a.nav-to-menu.nav-to-menu--game {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 35;
  margin-bottom: 0;
  pointer-events: auto;
}
