@import '../css/shared.css';

body {
  background: var(--c-bg);
  color: var(--c-onBg);
  transition: background 0.05s, color 0.05s;
  font-family: 'Iosevka Web', 'Iosevka', 'SF Mono', monospace;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: crosshair;
}

.glyph {
  font-family: var(--font-glyph);
  font-size: 50vmin;
  line-height: 1;
}

.info {
  position: fixed;
  bottom: 2vh;
  font-size: 1.4vh;
  text-align: center;
  line-height: 1.6;
}

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

.info a:hover { text-decoration: underline; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vh 2vh;
  font-size: 1.4vh;
  z-index: 1;
}

.header__title {
  color: inherit;
  text-decoration: none;
  font-size: 1.4vh;
  padding: 0.3em 1.25em 0.3em 0.5em;
}

.header__title:hover {
  background: var(--c-onBg);
  color: var(--c-bg);
}

.controls {
  display: flex;
  gap: 0;
}

.model-select {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.4vh;
  background: var(--c-bg);
  color: var(--c-onBg);
  border: 1px solid var(--c-onBg);
  padding: 0.3em 0.5em;
  cursor: pointer;
}

.play-btn {
  font-family: inherit;
  font-size: 1.4vh;
  background: var(--c-bg);
  color: var(--c-onBg);
  border: 1px solid var(--c-onBg);
  border-left: none;
  padding: 0.3em 0.6em;
  cursor: pointer;
}

.play-btn:hover,
.play-btn.active {
  background: var(--c-onBg);
  color: var(--c-bg);
}

.hint.hidden { visibility: hidden; }
