:root {
  color-scheme: light dark;
  --festive-red: #b91c1c;
  --festive-gold: #facc15;
  --frost-white: rgba(255, 255, 255, 0.92);
  --font-base: 'Righteous', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-josefin: 'Josefin Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-raleway: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-typewriter: 'Typewriter', 'Courier New', Courier, monospace;
}

@font-face {
  font-family: 'Righteous';
  src: url('./assets/fonts/Righteous-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Josefin Sans';
  src: url('./assets/fonts/JosefinSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Josefin Sans';
  src: url('./assets/fonts/JosefinSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('./assets/fonts/Raleway-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Typewriter';
  src: url('./assets/fonts/TYPEWR_B.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-base);
  min-height: 100vh;
  width: 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  background: #0b0c10 url('./assets/BG.svg') center/cover no-repeat fixed;
  background-attachment: fixed;
}

body[data-view='home'] {
  background: #0b0c10 url('./assets/BG.svg') center/cover no-repeat fixed;
}

body[data-view='lobby'] {
  background: #0b0c10 url('./assets/BG.svg') center/cover no-repeat fixed;
}

body[data-view='game'] {
  background: #0b0c10 url('./assets/BG.svg') center/cover no-repeat fixed;
}

body[data-view='intermission'] {
  background: #0b0c10 url('./assets/BG.svg') center/cover no-repeat fixed;
}

body[data-view='final'] {
  background: #0b0c10 url('./assets/BG.svg') center/cover no-repeat fixed;
}

#app {
  width: 100%;
}

#splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0c10 url('./assets/BG.svg') center/cover no-repeat;
  z-index: 1000;
  transition: opacity 0.9s ease;
}

#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

#splash-screen img {
  max-width: 93.6vw;
  width: 93.6%;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
  transform: translateY(-200px);
}

.no-js-message {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}


h1,
h2,
h3 {
  margin: 0;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}

.button-primary {
  background: var(--frost-white);
  color: var(--festive-red);
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-shadow: 0 10px 20px rgba(185, 28, 28, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 24px rgba(185, 28, 28, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--festive-red);
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.55rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-shadow: 0 6px 16px rgba(250, 204, 21, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}

.button-secondary:hover {
  transform: translateY(-1px);
  background: #fff7db;
}

.button-primary:disabled,
.button-secondary:disabled,
.answer-button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.answer-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-radius: 1.6rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.answer-button:hover:not(:disabled) {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.28);
}

.answer-button.correct {
  background: rgba(34, 197, 94, 0.9);
  border-color: rgba(74, 222, 128, 0.85);
  color: #ffffff;
}

.answer-button.incorrect {
  background: rgba(248, 113, 113, 0.9);
  border-color: rgba(252, 165, 165, 0.85);
  color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-slate-800 {
  color: #1e293b;
}

.text-gold {
  color: var(--festive-gold);
}

.text-emerald-200 {
  color: #a7f3d0;
}

.text-rose-200 {
  color: #fecdd3;
}

.text-rose-300 {
  color: #fda4af;
}

.text-emerald-300 {
  color: #6ee7b7;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.snow-heading::before {
  content: "❄️ ";
}

.snow-heading::after {
  content: " ❄️";
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.hidden {
  display: none !important;
}

.home-screen {
  min-height: min(100vh, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
}

.home-card {
  width: min(540px, 100%);
  background: rgba(72, 72, 72, 0.5);
  border-radius: 1.5rem;
  padding: 2.75rem 2.25rem 3rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: center;
}

.home-logo img {
  max-width: min(70vw, 360px);
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.square-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.square-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  aspect-ratio: 1 / 1;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
  padding: 1.35rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.square-btn svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.square-btn span {
  font-size: 0.95rem;
  line-height: 1.35;
}

.square-btn:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.32);
}

.square-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.square-btn.wide {
  aspect-ratio: auto;
  width: 100%;
  min-height: 120px;
}

.square-btn.compact {
  min-height: 96px;
  padding: 1rem;
}

.square-btn.primary-action {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.92), rgba(153, 27, 27, 0.95));
  border-color: rgba(248, 113, 113, 0.8);
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.35);
}

.square-btn.primary-action:hover {
  border-color: rgba(254, 226, 226, 0.9);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.95), rgba(220, 38, 38, 0.95));
}

.square-btn.secondary-action {
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.92), rgba(4, 120, 87, 0.92));
  border-color: rgba(74, 222, 128, 0.75);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.32);
}

.square-btn.secondary-action:hover {
  border-color: rgba(187, 247, 208, 0.85);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(21, 128, 61, 0.95));
}

.home-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.45);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.home-form label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-btn {
  border-radius: 9999px;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  width: 100%;
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.form-btn.primary-action {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.92), rgba(153, 27, 27, 0.95));
  border-color: rgba(248, 113, 113, 0.8);
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.35);
}

.form-btn.primary-action:hover {
  border-color: rgba(254, 226, 226, 0.9);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.95), rgba(220, 38, 38, 0.95));
}

.form-btn.secondary-action {
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.92), rgba(4, 120, 87, 0.92));
  border-color: rgba(74, 222, 128, 0.75);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.32);
}

.form-btn.secondary-action:hover {
  border-color: rgba(187, 247, 208, 0.85);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(21, 128, 61, 0.95));
}

.home-error {
  min-height: 1.25rem;
  font-size: 0.85rem;
}

.countdown-screen {
  min-height: min(100vh, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.countdown-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(250, 204, 21, 0.3), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.25), transparent 50%);
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
}

.countdown-card {
  width: min(460px, 100%);
  background: rgba(15, 23, 42, 0.5);
  border-radius: 1.6rem;
  padding: 2.5rem 2.1rem;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.countdown-card::before,
.countdown-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(12px);
  animation: floatUp 6s ease-in-out infinite;
  pointer-events: none;
}

.countdown-card::before {
  top: -40px;
  right: -20px;
}

.countdown-card::after {
  bottom: -50px;
  left: -30px;
  animation-delay: -2s;
}

.countdown-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.countdown-badge {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.countdown-art {
  width: min(374px, 85.8vw);
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
}

.countdown-game {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 0.04em;
}

.countdown-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: -0.5rem 0 0;
}

.countdown-circle {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}

.countdown-ring .ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 10;
}

.countdown-ring .ring-progress {
  fill: none;
  stroke: var(--festive-gold);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.countdown-timer {
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--festive-gold);
  text-shadow: 0 14px 32px rgba(250, 204, 21, 0.35);
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseTimer 1s ease-in-out infinite;
}

.countdown-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.countdown-sparkles {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  animation: twinkle 1.8s ease-in-out infinite;
}

.countdown-sparkles span:nth-child(2) {
  animation-delay: -0.6s;
}

.countdown-sparkles span:nth-child(3) {
  animation-delay: -1.2s;
}

@media (max-width: 600px) {
  .home-card {
    padding: 2.1rem 1.5rem 2.35rem;
    gap: 1.35rem;
  }

  .home-logo img {
    max-width: min(60vw, 240px);
  }

  .square-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 0.75rem;
  }

  .square-btn {
    gap: 0.55rem;
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .square-btn svg {
    width: 34px;
    height: 34px;
  }

  .square-btn span {
    font-size: 0.85rem;
  }

  .home-form {
    padding: 1rem 1.2rem;
  }

  .form-btn {
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }

  .countdown-card {
    width: min(340px, 100%);
    padding: 2rem 1.5rem;
    border-radius: 1.3rem;
    gap: 1rem;
  }

  .countdown-top {
    flex-direction: column;
    gap: 0.5rem;
  }

  .countdown-art {
    width: min(280.8px, 109.2vw);
  }

  .countdown-circle {
    width: 118px;
    height: 118px;
  }

  .countdown-desc {
    font-size: 0.9rem;
    margin-top: -0.25rem;
  }

  .countdown-ring {
    width: 118px;
    height: 118px;
  }

  .countdown-ring .ring-bg,
  .countdown-ring .ring-progress {
    stroke-width: 8;
  }

  .countdown-timer {
    font-size: 3.2rem;
    min-width: 88px;
  }

  .countdown-note {
    font-size: 0.85rem;
  }

  .countdown-sparkles {
    font-size: 0.8rem;
    gap: 0.45rem;
  }
}

.lobby-screen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lobby-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(72, 72, 72, 0.5);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.lobby-code-card {
  align-self: center;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 1rem;
  padding: 1.1rem 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  text-align: center;
}

.local-player-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(72, 72, 72, 0.5);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.local-score {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lobby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.lobby-panel {
  background: rgba(72, 72, 72, 0.5);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.series-actions {
  display: grid;
  gap: 0.75rem;
}

.single-picker {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lobby-note {
  line-height: 1.5;
}

.scoreboard-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
  margin-inline: auto;
  max-width: 500px;
}

.scoreboard-card.final {
  max-width: 540px;
}

.intermission-screen,
.final-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.intermission-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.winner-celebration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: floatUp 4s ease-in-out infinite;
}

.trophy {
  font-size: 3rem;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.score-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  gap: 0.75rem;
  flex-wrap: wrap;
}

.score-row.winner {
  background: rgba(250, 204, 21, 0.22);
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.55);
  animation: winnerGlow 1.4s ease-in-out infinite alternate;
}

.score-name {
  color: #ffffff;
  flex: 1 1 60%;
  min-width: 0;
  text-align: left;
}

.score-value {
  color: var(--festive-gold);
  font-weight: 700;
  flex: 0 0 auto;
  text-align: right;
}

.score-row.winner .score-value {
  color: #ffffff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.game-tile {
  aspect-ratio: 1 / 1;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.26);
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: #ffffff;
  gap: 0.5rem;
  transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
  cursor: pointer;
}

.game-tile--red {
  background: linear-gradient(160deg, rgba(220, 38, 38, 0.85), rgba(153, 27, 27, 0.85));
  border-color: rgba(254, 202, 202, 0.6);
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.22);
}

.game-tile--green {
  background: linear-gradient(160deg, rgba(21, 128, 61, 0.85), rgba(4, 120, 87, 0.82));
  border-color: rgba(167, 243, 208, 0.55);
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.22);
}

.game-tile--red:hover {
  background: linear-gradient(160deg, rgba(248, 113, 113, 0.95), rgba(220, 38, 38, 0.9));
}

.game-tile--green:hover {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.95), rgba(4, 120, 87, 0.9));
}

.game-tile:hover {
  transform: translateY(-4px);
}

.game-tile.selected,
.game-tile.played {
  background: rgba(148, 163, 184, 0.32);
  border-color: rgba(148, 163, 184, 0.75);
}

.game-tile.active {
  background: rgba(250, 204, 21, 0.25);
  border-color: rgba(250, 204, 21, 0.8);
}

.game-tile.disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.game-icon {
  font-size: 2rem;
}

.game-title {
  font-weight: 700;
  font-size: 1rem;
}

.game-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.text-center {
  text-align: center;
}

.ordering-board {
  background: rgba(15, 23, 42, 0.35);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ordering-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ordering-timer {
  font-size: 2rem;
  font-weight: 700;
  color: var(--festive-gold);
  text-shadow: 0 6px 18px rgba(250, 204, 21, 0.35);
}

.ordering-feedback {
  min-height: 1.25rem;
}

.ordering-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ordering-sequence {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.ordering-sequence-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.ordering-sequence-slot {
  min-height: 54px;
  border-radius: 0.9rem;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
}

.ordering-sequence-slot.placeholder {
  opacity: 0.4;
}

.ordering-sequence-slot.filled {
  border-style: solid;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.8);
  cursor: pointer;
  font-weight: 600;
}

.ordering-options-section {
  width: 100%;
  margin-top: 1rem;
}

.ordering-option-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
}

.ordering-option {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: #fdfdfd;
  border-radius: 0.9rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, border 0.15s ease, background 0.15s ease;
  text-align: center;
}

.ordering-option:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.25);
}

.ordering-option:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.ordering-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.ordering-main-action {
  width: 100%;
  max-width: none;
  padding: 0.85rem 1.2rem;
  border-radius: 1rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ordering-main-action.primary-action {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #0f172a;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.25);
}

.ordering-main-action.primary-action:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(34, 197, 94, 0.3);
}

.ordering-main-action.secondary-action {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  color: #fff5f5;
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.25);
}

.ordering-main-action.secondary-action:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(239, 68, 68, 0.3);
}

.ordering-main-action:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.feud-dialog-host {
  width: 100%;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: center;
}

.feud-dialog-container {
  position: static;
  width: min(520px, 94%);
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.feud-dialog {
  position: relative;
  width: 100%;
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.92);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.35);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feud-dialog__heading {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.feud-dialog__prompt {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-align: center;
  color: rgba(15, 23, 42, 0.65);
}

.feud-dialog__lives {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.7);
}

.feud-dialog__lives span {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.feud-finish-card {
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.feud-finish-text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 600;
}

.feud-finish-subtext {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.7);
}

.feud-finish-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  color: #0f172a;
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feud-finish-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(249, 115, 22, 0.3);
}

.feud-finish-button:active {
  transform: translateY(0);
}

.feud-inline-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .feud-inline-form {
    flex-direction: row;
    align-items: center;
  }
}

.feud-inline-input {
  flex: 1 1 auto;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.feud-inline-input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(34, 197, 94, 0.45), 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.feud-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feud-lock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(14, 165, 233, 0.3);
}

.feud-lock-btn:active {
  transform: translateY(0);
}

.feud-lock-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ordering-actions .square-btn {
  flex: 1 1 45%;
  max-width: 210px;
  min-width: 140px;
  width: auto;
  aspect-ratio: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem 1rem;
}

.ordering-actions .square-btn span {
  display: block;
  line-height: 1.2;
}

.ordering-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  padding: 0.65rem 0.9rem;
  cursor: grab;
  transition: transform 0.15s ease, border 0.15s ease, background 0.15s ease;
  touch-action: none;
}

.ordering-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.ordering-item.dragging {
  opacity: 0.6;
  cursor: grabbing;
  pointer-events: none;
}

.ordering-item.drag-over {
  border-color: rgba(250, 204, 21, 0.8);
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.45);
}

.ordering-item.disabled {
  opacity: 0.6;
  cursor: default;
}

.ordering-handle {
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.7;
}

.ordering-label {
  flex: 1;
}

.feud-answer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.15s ease;
}

.feud-answer.revealed {
  background: rgba(250, 204, 21, 0.15);
  transform: scale(1.01);
}

.feud-rank {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.feud-value {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.feud-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .feud-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}

.feud-points {
  font-size: 0.85rem;
  color: rgba(250, 204, 21, 0.9);
}

.evil-history {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.evil-history li {
  background: rgba(255, 255, 255, 0.18);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
}

.evil-turn-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.evil-turn-flare {
  display: flex;
  justify-content: center;
  animation: flarePop 0.4s ease-out;
}

.evil-turn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.18);
  color: var(--festive-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.2);
}

@keyframes flarePop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.evil-player-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.evil-table-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.evil-table {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgba(15, 23, 42, 0.6));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 20px 45px rgba(8, 11, 24, 0.45);
}

.evil-table-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.evil-table-instruction {
  max-width: 320px;
}

.evil-seat {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(92px, 28%, 140px);
  min-height: 96px;
  padding: 0.65rem 0.75rem;
  border-radius: 1.1rem;
  background: rgba(12, 18, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  appearance: none;
  outline: none;
  box-shadow: 0 12px 24px rgba(8, 11, 24, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.85rem;
  text-align: center;
  cursor: default;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.evil-seat[disabled] {
  cursor: default;
  pointer-events: none;
  opacity: 0.85;
}

.evil-seat:not(.selectable) {
  pointer-events: none;
}

.evil-seat.current {
  border-color: rgba(250, 204, 21, 0.75);
  box-shadow: 0 18px 32px rgba(250, 204, 21, 0.25);
  transform: translate(-50%, -50%) scale(1.05);
}

.evil-seat.self {
  border-color: rgba(94, 234, 212, 0.65);
}

.evil-seat.selectable {
  pointer-events: auto;
  cursor: pointer;
  border-color: rgba(250, 204, 21, 0.55);
  background: rgba(30, 41, 59, 0.9);
}

.evil-seat.selectable:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 20px 36px rgba(250, 204, 21, 0.2);
}

.evil-seat-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.evil-seat-gift {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.evil-seat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--festive-gold);
}

.evil-seat-value.hidden {
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2em;
}

.evil-summary {
  animation: fadeIn 0.4s ease;
}

.evil-summary-list li {
  color: var(--festive-gold);
}

.compact-btn {
  padding: 0.45rem 1rem;
  min-height: auto;
}

.evil-player-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.evil-player-card.current {
  border-color: rgba(250, 204, 21, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(250, 204, 21, 0.22);
}

.evil-player-card.self {
  border-color: rgba(94, 234, 212, 0.6);
}

.evil-player-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.evil-player-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.evil-player-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.evil-player-gift {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.evil-player-value {
  font-size: 1.05rem;
  font-weight: 700;
}

.evil-player-value.hidden {
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
}

.evil-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.evil-swap-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.evil-swap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.evil-summary-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 420px;
}

.puzzle-wrapper {
  display: flex;
  justify-content: center;
}

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 6px;
}

.puzzle-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.puzzle-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.25rem;
}

.puzzle-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.puzzle-action-full {
  grid-column: 1 / -1;
}

.puzzle-action-btn.secondary-action {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #0f172a;
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.25);
}

.puzzle-action-btn.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(14, 165, 233, 0.3);
}

.puzzle-action-btn.primary-action {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  color: #fff5f5;
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.25);
}

.puzzle-action-btn.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(239, 68, 68, 0.3);
}

.puzzle-action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.puzzle-tile {
  width: 100px;
  height: 100px;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.puzzle-tile:hover {
  transform: translateY(-1px);
}

.puzzle-tile.empty {
  background: rgba(255, 255, 255, 0.12);
  cursor: default;
  box-shadow: none;
}

.puzzle-preview {
  max-width: 200px;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.justify-start {
  justify-content: flex-start !important;
}
.gap-6 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 0.25rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 1rem;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-md {
  border-radius: 0.5rem;
}

.font-righteous {
  font-family: 'Righteous', cursive;
}

.font-josefin {
  font-family: var(--font-josefin);
}

.font-raleway {
  font-family: var(--font-raleway);
}

.font-typewriter {
  font-family: var(--font-typewriter);
}

.shadow-lg {
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.shadow-inner {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.18);
}

.bg-white\/12 {
  background-color: rgba(255, 255, 255, 0.24);
}

.bg-white\/15 {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-white\/90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.w-full {
  width: 100%;
}

.h-6 {
  min-height: 1.5rem;
}

.text-white\/70 strong {
  color: #ffffff;
}

.drop-shadow-md {
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.drop-shadow {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.45);
}

.focus\:ring-gold:focus {
  border-color: var(--festive-gold);
}

.text-center strong {
  color: #ffffff;
}

@media (min-width: 640px) {
  .sm\\:flex-row {
    flex-direction: row;
  }

  .sm\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\\:flex-row {
    flex-direction: row;
  }

  .lobby-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .lobby-code-card {
    align-self: center;
  }

  .home-card {
    padding: 3rem 2.75rem;
  }
}

@keyframes winnerGlow {
  from {
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.6), 0 10px 30px rgba(250, 204, 21, 0.25);
    transform: translateY(0);
  }
  to {
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.8), 0 14px 40px rgba(250, 204, 21, 0.35);
    transform: translateY(-2px);
  }
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulseTimer {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}
