* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0; height: 100%;
  font-family: 'Roboto', -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #000000;
}
body {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
}
.stack {
  display: flex; flex-direction: column; align-items: center;
}
.logo {
  width: 225px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* ---- GET FORGE button: stroke ring + near-black gradient fill + gradient text ---- */
.btn-get-forge {
  margin-top: 56px;
  padding: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFFFFF 0%, #0D0D0D 70%);
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: filter 0.15s ease;
}
.btn-get-forge:hover, .btn-get-forge:active {
  filter: invert(1);
}
.btn-get-forge .inner {
  display: block;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1c1c1c 0%, #000000 100%);
}
.btn-get-forge .label {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #FFFFFF 0%, #545454 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
