:root {
  --bg-1: #14b8b3;
  --bg-2: #0872c9;
  --bg-3: #29d59f;

  --panel: #232923;
  --panel-2: #2e342e;
  --panel-3: #1a1e1a;

  --text: #fff9ef;
  --text-dim: #d7d2c6;
  --text-dark: #1f221f;

  --line-dark: #1d1d1d;
  --line-light: #fffdf6;

  --yellow: #ffd21a;
  --yellow-deep: #f0b900;
  --white-btn: #fff8ec;
  --danger: #ef4036;
  --success: #4cc96c;
  --sky: #5fd5ff;

  --shadow-hard: 0 8px 0 rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.28);

  --radius-panel: 32px;
  --radius-card: 22px;
  --radius-pill: 999px;

  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.screen {
  display: none;
}

.screen.active-screen,
.screen:not(.hidden) {
  display: grid;
}

h1,
h2,
h3,
h4,
h5,
h6,
.screen-title,
.section-title,
.hero-title,
.btn,
.room-code-value,
.step-index {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

button,
input {
  font: inherit;
}