/* ========== Variables ========== */
/* ========== Base ========== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Teko", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.25;
}

footer {
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== Layout ========== */
.wrap {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 4vw, 2rem);
  height: 100%;
}
@media (min-width: 700px) {
  .wrap {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Left: Logo & brand */
.logo {
  display: grid;
  fill: #fff;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}
.logo .fum-logo {
  width: min(480px, 100%);
  height: auto;
  display: block;
}
.logo .fum-logo .logo-bg {
  fill: #121214;
}
.logo .fum-logo .logo-skull {
  fill: #fff;
}
.logo .fum-logo .logo-hole {
  fill: #121214;
}
.logo .fum-logo .logo-teeth {
  fill: #fff;
}
.logo .fum-logo .logo-hood {
  fill: #d9d9d9;
  opacity: 0.1;
}
.logo .fum-logo .logo-body {
  fill: #e9e9e9;
  opacity: 0.12;
}
.logo .fum-logo .logo-sword,
.logo .fum-logo .logo-sword-cross {
  fill: #bbb;
  opacity: 0.4;
}
.logo .fum-logo .logo-cross {
  fill: #c00;
  opacity: 0.85;
}
.logo .brand {
  font-family: "UnifrakturMaguntia", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0.25rem 0 0;
}
.logo .brand-teko {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 8vw, 1.5rem);
  display: block;
  margin: -1.2rem auto 0;
}
.logo .tag {
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  text-transform: uppercase;
  color: #b8b8b8;
  margin: 0;
  visibility: hidden;
}

/* Right: Panel & links */
.panel {
  display: grid;
  gap: 1rem;
}
.panel .title {
  font-family: "Teko", serif;
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}
.panel .links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: -1rem auto 1rem;
}
@media (min-width: 480px) {
  .panel .links {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }
}

/* Buttons/Icons */
.icon-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.08s ease, background 0.2s ease, color 0.2s ease;
}
.icon-link .icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.icon-link span {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.icon-link:hover, .icon-link:focus-visible {
  border-color: #c00;
  color: #fff;
  background: rgba(204, 0, 0, 0.1);
  outline: none;
}
.icon-link:active {
  transform: translateY(1px);
}

.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

/* Utility focus ring for keyboard users */
:focus-visible {
  outline: 2px solid #c00;
  outline-offset: 2px;
}

#xmr-footer {
  position: fixed;
  bottom: -80px; /* hidden by default */
  left: 0;
  width: 100%;
  background-color: #FF6600; /* Monero orange */
  color: white;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  transition: bottom 0.3s ease-in-out;
  font-family: sans-serif;
  z-index: 9999;
}
#xmr-footer.open {
  bottom: 0px;
}
#xmr-footer input {
  font-family: monospace;
  font-size: 14px;
  padding: 5px;
  border: none;
  border-radius: 3px;
  width: 70%;
  max-width: 400px;
}
#xmr-footer button {
  margin-left: 5px;
  padding: 5px 10px;
  border: none;
  background: white;
  color: #FF6600;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
}

/* SVG click button */
#xmr-button {
  background: #000;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10000;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 14px;
  box-shadow: #000 0px 3px 12px;
}

/*# sourceMappingURL=styles.css.map */
