@font-face {
  font-family: "Zen Maru Gothic";
  src: url("assets/ZenMaruGothic-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

:root {
  --bg: #17181c;          /* sampled from splash background so everything blends */
  --text: #eef0f4;
  --muted: #a7abb4;
  --accent: #f7791e;      /* orange from the logo's fire ring */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  font-family: "Zen Maru Gothic", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vh, 3rem);
  padding: 6vh 5vw;
  transform: translateY(-200px);
}

.splash {
  display: block;
  width: 100%;
  max-width: 1800px;
  height: auto;
  /* image background matches --bg, so the frame dissolves into the page */
}

.support {
  width: 100%;
  max-width: 820px;
  text-align: center;
  margin-top: -200px;
}

.support p {
  margin: 0 0 1.25rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.support .en {
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  color: var(--text);
}

.support .el {
  font-size: clamp(0.95rem, 2.3vw, 1.35rem);
  color: var(--muted);
  margin-bottom: 0;
}

.support a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.support a:hover {
  border-bottom-color: var(--accent);
}
