:root {
  --bg: #0b0c0f;
  --frame: rgba(255, 255, 255, 0.08);
  --frame2: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --shadow: rgba(0, 0, 0, 0.45);

  --tickerGreen: rgba(128, 255, 170, 0.92);
  --tickerGreenGlow: rgba(70, 255, 150, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 0
  );
  background-size: 24px 24px;
}

.screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  position: relative;
}

.board {
  text-align: center;
  max-width: min(100%, 95vw);
  margin: 0 auto;
}

.answerRow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 24px);
}

.statusArrow {
  display: inline-block;
  align-self: center;
  line-height: 1;
  font-size: clamp(96px, 20vw, 220px);
  color: transparent;
  background-size: 10px 10px;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(70, 255, 150, 0.22);
}

.screen.isYes .statusArrow {
  background-image:
    radial-gradient(circle at 1px 1px, var(--tickerGreen) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, var(--tickerGreen) 1px, transparent 0);
}

.screen.isNo .statusArrow {
  background-image:
    radial-gradient(circle at 1px 1px, #ff5b6b 1px, transparent 0),
    radial-gradient(circle at 1px 1px, #ff5b6b 1px, transparent 0);
  text-shadow: 0 0 20px rgba(255, 91, 107, 0.45);
}

.screen.isUnknown .statusArrow {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.7) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.7) 1px, transparent 0);
  text-shadow: none;
}

.answer {
  margin: 0;
  font-size: clamp(100px, 24vw, 300px);
  line-height: 0.86;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;
  background-size: 10px 10px;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 20px rgba(70, 255, 150, 0.2);
}

.screen.isYes .answer {
  background-image:
    radial-gradient(circle at 1px 1px, var(--tickerGreen) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, var(--tickerGreen) 1px, transparent 0);
}

.screen.isNo .answer {
  background-image:
    radial-gradient(circle at 1px 1px, #ff5b6b 1px, transparent 0),
    radial-gradient(circle at 1px 1px, #ff5b6b 1px, transparent 0);
  text-shadow: 0 0 26px rgba(255, 91, 107, 0.45);
}

.screen.isUnknown .answer {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.65) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.65) 1px, transparent 0);
  text-shadow: none;
}

.meta {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(180, 255, 210, 0.9);
}

.metaLine {
  display: inline-block;
  color: rgba(88, 205, 120, 0.78); /* more subdued fallback */
  font-size: 20px;
  letter-spacing: 0.04em;
  background-size: 6px 6px;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 0.4px rgba(0, 0, 0, 0.75),
    0 0 2px rgba(88, 205, 120, 0.45);
  -webkit-text-stroke: 0.08px rgba(88, 205, 120, 0.65);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(88, 205, 120, 0.65) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, rgba(88, 205, 120, 0.65) 1px, transparent 0);
}

.metaLine + .metaLine {
  margin-top: 6px;
}

@media (max-width: 520px) {
  .answerRow {
    gap: 10px;
  }

  .answer {
    font-size: clamp(72px, 26vw, 200px);
  }

  .statusArrow {
    font-size: clamp(64px, 22vw, 170px);
  }

  .meta {
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .metaLine {
    font-size: clamp(14px, 4.2vw, 20px);
    letter-spacing: 0.05em;
    background-size: 5px 5px;
  }

  .screen {
    padding: 12px 8px;
  }
}
