/* tokens
   lilac: #e6d7ef (sampled off the approved avatar's own background, page matches it exactly
   so the sticker sits with no visible edge)
   ink: #4a3a5c (ticker), #3a2f4a (CA)
   type: Baloo 2 (soft rounded, ticker), IBM Plex Mono (CA, real case, copyable)
   corner radius: 0, no frame around the sticker
   motion: none, one screen, nothing else at all
*/

@font-face {
  font-family: "Baloo 2";
  src: url("assets/fonts/baloo-2-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Baloo 2";
  src: url("assets/fonts/baloo-2-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #e6d7ef;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3vh 4vw;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.sticker {
  display: block;
  width: min(72vw, 78vh);
  height: auto;
  max-width: 720px;
}

.ticker {
  margin: 1.4vh 0 0;
  font-family: "Baloo 2", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 34px);
  color: #4a3a5c;
  letter-spacing: 0.01em;
}

.ca {
  margin: 0.8vh 0 0;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, "Courier New", monospace;
  font-variant: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(11px, 1.5vw, 14px);
  color: #3a2f4a;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px dotted #8a72a3;
  word-break: break-all;
}

.links {
  margin: 1.6vh 0 0;
  display: flex;
  gap: 1.4em;
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 15px);
  letter-spacing: 0.06em;
}
.links a { color: #8a72a3; text-decoration: none; }
.links a:hover { color: #4a3a5c; }

@media (max-width: 480px) {
  .sticker { width: 82vw; }
}
