* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg: #0A0F2E;
  --navy: #0D1B4A;
  --navy2: #091228;
  --ice: #38BDF8;
  --ice-light: #BAE6FD;
  --ice-dim: rgba(186,230,253,0.65);
  --white: #FFFFFF;
  --card: rgba(255,255,255,0.07);
  --card-border: #38BDF8;
  --card-glow: rgba(56,189,248,0.18);
  --gold: #FCD34D;
  --red: #F87171;
  --green: #34D399;
  --text: #FFFFFF;
  --text-muted: rgba(186,230,253,0.72);
  --text-light: rgba(186,230,253,0.45);
  --shadow-ice: 0 0 20px rgba(56,189,248,0.15), 0 4px 24px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 28px rgba(56,189,248,0.25), 0 4px 24px rgba(0,0,0,0.4);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── SCREENS ─── */
.screen {
  display: none;
  min-height: 100vh;
  flex-direction: column;
}
.screen.active {
  display: flex;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.screen-entering > * {
  animation: slideInUp 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.screen-entering > *:nth-child(2) { animation-delay: 0.04s; }
.screen-entering > *:nth-child(3) { animation-delay: 0.08s; }
.screen-entering > *:nth-child(4) { animation-delay: 0.12s; }
.screen-entering > *:nth-child(5) { animation-delay: 0.16s; }

/* ─── HOME ─── */
.home-bg {
  min-height: 100vh;
  background-color: #050814;
  background-image:
    linear-gradient(180deg, rgba(5,0,20,0.45) 0%, rgba(8,4,30,0.15) 40%, rgba(5,0,20,0.6) 100%),
    url('assets/home-bg-new.jpeg');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home-bg::before, .home-bg::after { display: none; }

.home-top-bar {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 0;
  position: relative;
  z-index: 2;
}

.home-icon-row {
  display: flex;
  gap: 8px;
}

.home-icon-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}

.home-icon-btn:active { background: rgba(255,255,255,0.18); }

.home-dev-btn { opacity: 0.4; }
.home-dev-btn:active { opacity: 1; }

.home-logo-area {
  padding: 32px 28px 0;
  position: relative;
  z-index: 2;
  text-align: left;
}

.logo {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
  animation: none;
  text-shadow:
    0 0 30px rgba(147,51,234,0.7),
    0 0 60px rgba(109,40,217,0.4),
    0 2px 12px rgba(0,0,0,0.8);
  line-height: 1.05;
}

.logo span {
  color: #C084FC;
  -webkit-text-fill-color: #C084FC;
  text-shadow:
    0 0 20px rgba(192,132,252,0.9),
    0 0 50px rgba(147,51,234,0.6);
}

.tagline {
  color: rgba(216,180,254,0.8);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
  text-shadow: 0 0 12px rgba(147,51,234,0.5);
}

.home-cta-area {
  position: absolute;
  bottom: 72px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 36px;
  z-index: 2;
}

.btn-home-play {
  width: 100%;
  max-width: 320px;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 0 32px rgba(124,58,237,0.6),
    0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-home-play:active {
  transform: scale(0.96);
  box-shadow: 0 0 20px rgba(124,58,237,0.4), 0 2px 10px rgba(0,0,0,0.4);
}

/* ─── PARTICLES (snow / ice crystals) ─── */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: drift linear infinite;
  opacity: 0.55;
}

@keyframes drift {
  0% { transform: translateY(-10px) scale(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.55; }
  90% { opacity: 0.4; }
  100% { transform: translateY(100vh) scale(1) rotate(360deg); opacity: 0; }
}

/* ─── BUTTONS ─── */
@keyframes btn-bounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.88); }
  65%  { transform: scale(1.08); }
  82%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.btn-primary {
  width: 100%;
  max-width: 340px;
  padding: 18px;
  background: var(--ice);
  color: #0A0F2E;
  border: none;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(56,189,248,0.5), 0 4px 16px rgba(0,0,0,0.3);
  transition: box-shadow 0.2s, transform 0.12s;
  letter-spacing: 0.3px;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:active {
  transform: scale(0.93);
  box-shadow: 0 0 14px rgba(56,189,248,0.3), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-secondary {
  width: 100%;
  max-width: 340px;
  padding: 15px;
  background: transparent;
  color: var(--ice);
  border: 2px solid var(--ice);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s;
  box-shadow: 0 0 14px rgba(56,189,248,0.15);
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-secondary:active {
  transform: scale(0.93);
  background: rgba(56,189,248,0.1);
}

.btn-ghost {
  width: 100%;
  max-width: 340px;
  padding: 12px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 100px;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-ghost:active {
  animation: btn-bounce 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  color: var(--ice-light);
}

.btn-back {
  background: transparent;
  color: var(--ice);
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 0;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(56,189,248,0.4);
}

.btn-back:active {
  animation: btn-bounce 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.btn-manage {
  margin-left: auto;
  background: rgba(124,58,237,0.2);
  color: #C084FC;
  border: 1px solid rgba(192,132,252,0.35);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-manage:active { background: rgba(124,58,237,0.4); }

.btn-add {
  padding: 14px 20px;
  background: var(--ice);
  color: #0A0F2E;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(56,189,248,0.4);
}

.btn-add:active {
  animation: btn-bounce 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ─── TOP BAR ─── */
.top-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 12px;
  background: rgba(10,15,46,0.85);
  border-bottom: 1px solid rgba(56,189,248,0.2);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.top-bar h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 16px rgba(56,189,248,0.3);
}

/* ─── CONTENT ─── */
.content {
  padding: 12px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  background: linear-gradient(180deg, #0D1B4A 0%, #0A0F2E 100%);
}

/* Modes screen overrides — transparent content so space bg shows through */
#screen-modes {
  background-color: #050814;
  background-image:
    linear-gradient(180deg, rgba(5,0,20,0.55) 0%, rgba(20,5,50,0.45) 50%, rgba(5,0,20,0.65) 100%),
    url('assets/home-bg-new.jpeg');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
}

#screen-modes .content {
  background: transparent;
}

#screen-modes .top-bar {
  background: rgba(8,3,24,0.75);
  border-bottom-color: rgba(147,51,234,0.3);
}

#screen-modes .top-bar h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-shadow:
    0 0 24px rgba(147,51,234,0.8),
    0 0 50px rgba(109,40,217,0.4),
    0 2px 8px rgba(0,0,0,0.9);
}

#screen-modes .btn-back {
  color: #A78BFA;
  border-color: rgba(167,139,250,0.35);
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ice);
  font-weight: 700;
  padding: 4px 0;
  text-shadow: 0 0 12px rgba(56,189,248,0.4);
}

/* ─── FROSTED GLASS MIXIN (applied per-component) ─── */

/* ─── MODE CARDS ─── */
.mode-card {
  background: rgba(15,8,40,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 18px 18px 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.22);
  box-shadow: var(--shadow-ice);
}

/* Bold left-border accent via ::before */
.mode-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  border-radius: 0;
}

.mode-card:active {
  animation: btn-bounce 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Per-mode accent colours — purple/blue-violet family */
.mode-card:nth-child(1)::before { background: #7C3AED; box-shadow: 0 0 12px rgba(124,58,237,0.8); }
.mode-card:nth-child(2)::before { background: #4F46E5; box-shadow: 0 0 12px rgba(79,70,229,0.8); }
.mode-card:nth-child(3)::before { background: #818CF8; box-shadow: 0 0 12px rgba(129,140,248,0.8); }
.mode-card:nth-child(4)::before { background: #6366F1; box-shadow: 0 0 12px rgba(99,102,241,0.8); }
/* Premium modes: muted amber/gold accent */
.mode-card:nth-child(5)::before { background: rgba(180,130,20,0.7); box-shadow: 0 0 10px rgba(180,130,20,0.5); }
.mode-card:nth-child(6)::before { background: rgba(180,130,20,0.7); box-shadow: 0 0 10px rgba(180,130,20,0.5); }

/* Per-card border glow to match left accent */
.mode-card:nth-child(1) { border-color: rgba(124,58,237,0.35); box-shadow: 0 0 18px rgba(124,58,237,0.15), 0 4px 16px rgba(0,0,0,0.4); }
.mode-card:nth-child(2) { border-color: rgba(79,70,229,0.35);  box-shadow: 0 0 18px rgba(79,70,229,0.15),  0 4px 16px rgba(0,0,0,0.4); }
.mode-card:nth-child(3) { border-color: rgba(129,140,248,0.35); box-shadow: 0 0 18px rgba(129,140,248,0.15), 0 4px 16px rgba(0,0,0,0.4); }
.mode-card:nth-child(4) { border-color: rgba(99,102,241,0.35);  box-shadow: 0 0 18px rgba(99,102,241,0.15),  0 4px 16px rgba(0,0,0,0.4); }
.mode-card:nth-child(5) { border-color: rgba(180,130,20,0.3);   box-shadow: 0 0 16px rgba(180,130,20,0.1),   0 4px 16px rgba(0,0,0,0.4); }
.mode-card:nth-child(6) { border-color: rgba(180,130,20,0.3);   box-shadow: 0 0 16px rgba(180,130,20,0.1),   0 4px 16px rgba(0,0,0,0.4); }

.mode-icon {
  font-size: 38px;
  flex-shrink: 0;
}

.mode-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.mode-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.mode-arrow {
  margin-left: auto;
  font-size: 22px;
  color: var(--ice);
  flex-shrink: 0;
}

.mode-lock {
  margin-left: auto;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(250,204,21,0.15);
  border: 1px solid rgba(250,204,21,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

.mode-arrow-free {
  display: none;
}

.mode-card-premium {
  opacity: 0.75;
}

/* ─── HOW TO PLAY ─── */
.htp-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(56,189,248,0.22);
  box-shadow: var(--shadow-ice);
}

.htp-num {
  width: 32px;
  height: 32px;
  background: var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #0A0F2E;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(56,189,248,0.5);
}

.htp-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 4px;
}

/* ─── COMPETITION CARDS ─── */
.comp-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(56,189,248,0.2);
  box-shadow: var(--shadow-ice);
  cursor: pointer;
  transition: all 0.2s;
}

.comp-card:active {
  animation: btn-bounce 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.comp-card.selected {
  border-color: var(--ice);
  box-shadow: 0 0 0 2px rgba(56,189,248,0.3), var(--shadow-glow);
  background: rgba(56,189,248,0.1);
}

.comp-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.comp-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.comp-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.comp-explainer {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(186,230,253,0.55);
}

/* ─── TOGGLE CARDS ─── */
.toggle-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(56,189,248,0.18);
  box-shadow: var(--shadow-ice);
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.toggle-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.toggle-switch {
  margin-left: auto;
  width: 48px;
  height: 26px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s;
}

.toggle-switch.on {
  background: var(--ice);
}

.toggle-switch.on::after {
  left: 25px;
}

/* ─── PLAYER SETUP ─── */
.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(56,189,248,0.3);
  border-radius: 14px;
  color: var(--white);
  font-size: 16px;
  outline: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.input-row input::placeholder {
  color: var(--text-light);
}

.input-row input:focus {
  border-color: var(--ice);
  box-shadow: 0 0 16px rgba(56,189,248,0.25);
}

.player-item {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(56,189,248,0.2);
  box-shadow: var(--shadow-ice);
}

.player-character-display {
  font-size: 28px;
  position: relative;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── CHAR STACK ─── */
.char-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  position: relative;
}

.acc-animal { line-height: 1; }

.acc-above {
  font-size: 0.5em;
  line-height: 1;
  margin-bottom: -0.05em;
}

.acc-below {
  font-size: 0.5em;
  line-height: 1;
  margin-top: -0.05em;
}

.acc-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55em;
  z-index: 2;
}

.player-item-name {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.player-item-team {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 700;
}

.team-a { background: rgba(56,189,248,0.18); color: var(--ice); }
.team-b { background: rgba(252,211,77,0.18); color: var(--gold); }

.player-item button {
  background: transparent;
  border: none;
  color: rgba(186,230,253,0.3);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.impostor-select {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(252,211,77,0.25);
  box-shadow: var(--shadow-ice);
}

.impostor-select label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

.num-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.num-controls button {
  width: 36px;
  height: 36px;
  background: var(--ice);
  color: #0A0F2E;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(56,189,248,0.4);
}

.num-controls span {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  min-width: 24px;
  text-align: center;
}

/* ─── CHARACTER PICKER ─── */
.char-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.char-option {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1.5px solid rgba(56,189,248,0.15);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 28px;
}

.char-option:active {
  transform: scale(0.94);
}

.char-option.selected {
  border-color: var(--ice);
  background: rgba(56,189,248,0.12);
  box-shadow: 0 0 16px rgba(56,189,248,0.3);
}

.char-option.disabled {
  opacity: 0.25;
  pointer-events: none;
}

.char-option span {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── CHARACTER PREVIEW ─── */
.char-preview {
  background: rgba(56,189,248,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid rgba(56,189,248,0.3);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.preview-animal {
  font-size: 64px;
  line-height: 1;
  position: relative;
  z-index: 2;
  order: 0;
}

.preview-accessory {
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 2;
  order: 1;
  transition: all 0.3s;
}

#char-preview[data-acc-pos="above"] .preview-accessory {
  order: -1;
  margin-bottom: -6px;
  margin-top: 0;
}

#char-preview[data-acc-pos="middle"] .preview-accessory {
  position: absolute;
  order: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 36px;
}

/* ─── SPARKLES ─── */
.sparkle-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
}

.sparkle {
  position: absolute;
  animation: sparkle-fly 0.8s ease-out forwards;
  font-size: 20px;
}

@keyframes sparkle-fly {
  0% { transform: translate(0,0) scale(0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(1.5) rotate(360deg); opacity: 0; }
}

/* ─── PASS PHONE ─── */
.pass-container {
  min-height: 100vh;
  background: linear-gradient(160deg, #0A0F2E 0%, #0D1B4A 60%, #091228 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 14px;
  text-align: center;
}

.pass-char-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
}

.pass-glow-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--ring-color, var(--ice));
  box-shadow: 0 0 28px var(--ring-color, var(--ice)), 0 0 60px rgba(56,189,248,0.15);
  animation: pulse-ring 1.8s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1);    opacity: 0.9; }
  50%       { transform: scale(1.14); opacity: 0.3; }
}

.pass-character {
  font-size: 72px;
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 16px rgba(56,189,248,0.4));
}

.pass-container h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--ice);
  text-shadow: 0 0 20px rgba(56,189,248,0.5);
}

.pass-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ─── HOST REVEAL ─── */
.host-reveal-container {
  min-height: 100vh;
  background: linear-gradient(160deg, #0A0F2E, #0D1B4A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 20px;
  text-align: center;
}

.host-reveal-stop {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(252,211,77,0.4);
}

.host-reveal-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--ice);
  border-radius: 20px;
  padding: 28px 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 0 36px rgba(56,189,248,0.25), 0 4px 24px rgba(0,0,0,0.4);
}

.host-reveal-prompt-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}

.host-reveal-scale {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.host-reveal-instructions {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

/* ─── REVEAL ─── */
.reveal-container {
  min-height: 100vh;
  background: linear-gradient(160deg, #0A0F2E, #0D1B4A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 18px;
  text-align: center;
}

.role-badge {
  padding: 8px 28px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.role-badge.crewmate {
  background: rgba(56,189,248,0.12);
  color: var(--ice);
  border: 1.5px solid var(--ice);
  box-shadow: 0 0 14px rgba(56,189,248,0.25);
}

.role-badge.imposter {
  background: rgba(248,113,113,0.12);
  color: var(--red);
  border: 1.5px solid var(--red);
  animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248,113,113,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(248,113,113,0); }
}

.reveal-content {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 24px 20px;
  width: 100%;
  max-width: 340px;
  border: 1px solid rgba(56,189,248,0.25);
  box-shadow: var(--shadow-glow);
}

.reveal-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ice);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(56,189,248,0.4);
}

.reveal-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.reveal-text.imposter-text {
  color: var(--red);
  font-size: 17px;
}

/* ─── VOTE ─── */
.vote-sub {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.vote-item {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(56,189,248,0.18);
  box-shadow: var(--shadow-ice);
  cursor: pointer;
  transition: all 0.2s;
}

.vote-item.selected {
  border-color: var(--ice);
  background: rgba(56,189,248,0.1);
  box-shadow: 0 0 0 2px rgba(56,189,248,0.25), var(--shadow-glow);
}

.vote-character {
  font-size: 32px;
}

.vote-name {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.vote-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(186,230,253,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.vote-item.selected .vote-check {
  background: var(--ice);
  border-color: var(--ice);
  color: #0A0F2E;
  box-shadow: 0 0 12px rgba(56,189,248,0.5);
}

/* ─── TIMER ─── */
.timer-display {
  font-size: 72px;
  font-weight: 900;
  color: var(--ice);
  text-shadow: 0 0 32px rgba(56,189,248,0.6);
  font-variant-numeric: tabular-nums;
}

.timer-display.urgent {
  color: var(--red);
  text-shadow: 0 0 32px rgba(248,113,113,0.5);
  animation: pulse-red 0.5s ease-in-out infinite;
}

/* ─── CONFETTI ─── */
.confetti-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  top: -20px;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg) scale(0.5); opacity: 0; }
}

/* ─── RESULT ─── */
.result-container {
  min-height: 100vh;
  background: linear-gradient(160deg, #0A0F2E 0%, #1E3A8A 50%, #4C1D95 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 14px;
  text-align: center;
}

.result-icon {
  font-size: 80px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(56,189,248,0.4));
}

.result-container h2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 0 30px rgba(147,51,234,0.7),
    0 0 60px rgba(109,40,217,0.4),
    0 2px 12px rgba(0,0,0,0.8);
}

.result-container > p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(186,230,253,0.55);
  line-height: 1.5;
  max-width: 290px;
  margin-top: -4px;
}

.result-reveal-card {
  background: rgba(15,8,40,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(252,211,77,0.35);
  border-radius: 18px;
  padding: 16px 18px 16px 22px;
  width: 100%;
  max-width: 340px;
  text-align: left;
  animation: fadeInUp 0.5s ease both;
  box-shadow: 0 0 18px rgba(252,211,77,0.12), 0 4px 16px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.result-reveal-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: #FCD34D;
  box-shadow: 0 0 12px rgba(252,211,77,0.8);
}

.result-reveal-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ice);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(56,189,248,0.4);
}

.result-reveal-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.result-reveal-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.result-details {
  background: rgba(15,8,40,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 16px 18px 16px 22px;
  width: 100%;
  max-width: 340px;
  border: 1px solid rgba(124,58,237,0.35);
  box-shadow: 0 0 18px rgba(124,58,237,0.15), 0 4px 16px rgba(0,0,0,0.4);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.result-details::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: #7C3AED;
  box-shadow: 0 0 12px rgba(124,58,237,0.8);
}

.result-details:empty { display: none; }

.tournament-lives {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 340px;
}

.life-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid rgba(56,189,248,0.18);
  box-shadow: var(--shadow-ice);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.team-score {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 340px;
}

.team-score:empty { display: none; }

.lb-preview-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(186,230,253,0.55);
  text-align: left;
  margin-top: 4px;
}

.lb-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lb-strip::-webkit-scrollbar { display: none; }

.lb-chip {
  flex: 0 0 auto;
  min-width: 74px;
  background: rgba(15,8,40,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 14px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.lb-chip-rank { font-size: 14px; }
.lb-chip-animal { font-size: 22px; line-height: 1.1; }

.lb-chip-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lb-chip-pts {
  font-size: 11px;
  font-weight: 800;
  color: #FCD34D;
}

.btn-result-play {
  margin-top: 6px;
  box-shadow: 0 0 32px rgba(56,189,248,0.6), 0 4px 20px rgba(0,0,0,0.5);
}

.result-actions-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 2px;
}

.result-icon-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  width: 64px;
  padding: 10px 0 8px;
  font-size: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  color: rgba(186,230,253,0.75);
  transition: background 0.2s, transform 0.12s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.result-icon-btn span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-icon-btn:active {
  background: rgba(255,255,255,0.18);
  transform: scale(0.93);
}

.score-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  border: 2px solid transparent;
  min-width: 120px;
  box-shadow: var(--shadow-ice);
}

.score-card.team-a-card { border-color: var(--ice); box-shadow: 0 0 20px rgba(56,189,248,0.2); }
.score-card.team-b-card { border-color: var(--gold); box-shadow: 0 0 20px rgba(252,211,77,0.15); }

.score-card h3 {
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.score-card .score-num {
  font-size: 36px;
  font-weight: 900;
}

.team-a-card .score-num { color: var(--ice); text-shadow: 0 0 16px rgba(56,189,248,0.5); }
.team-b-card .score-num { color: var(--gold); text-shadow: 0 0 16px rgba(252,211,77,0.4); }

/* ─── PREMIUM UPSELL CARD ─── */
.premium-upsell-card {
  background: linear-gradient(135deg, rgba(120,53,15,0.25), rgba(180,83,9,0.15));
  border: 1px solid rgba(251,191,36,0.4);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 28px rgba(251,191,36,0.12), 0 4px 20px rgba(0,0,0,0.4);
}

.premium-upsell-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.premium-crown { font-size: 36px; }

.premium-upsell-title {
  font-size: 20px;
  font-weight: 800;
  color: #FCD34D;
  margin-bottom: 2px;
}

.premium-upsell-price {
  font-size: 14px;
  color: rgba(253,230,138,0.75);
  font-weight: 600;
}

.premium-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.premium-benefits li {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.benefit-dim {
  color: rgba(253,230,138,0.55);
  font-weight: 400;
}

.btn-upgrade {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #1a0a00;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(245,158,11,0.5), 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-upgrade:active {
  transform: scale(0.97);
  box-shadow: 0 0 12px rgba(245,158,11,0.3);
}

/* ─── TOP BAR LEADERBOARD BUTTON ─── */
.top-bar-lb-btn {
  background: rgba(252,211,77,0.15);
  border: 1px solid rgba(252,211,77,0.4);
  color: #FCD34D;
  font-size: 18px;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}
.top-bar-lb-btn:active { background: rgba(252,211,77,0.3); }

.btn-tertiary {
  background: transparent;
  border: 1px solid rgba(252,211,77,0.35);
  color: #FCD34D;
  border-radius: 14px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-tertiary:active { background: rgba(252,211,77,0.15); }

/* ─── CREDITS ─── */
.credits-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
}
.credits-content .credit-card { width: 100%; }

.studio-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px 24px;
  position: relative;
  animation: studio-fadein 1.2s ease-out both;
}
@keyframes studio-fadein {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.studio-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.25) 0%, transparent 70%);
  animation: studio-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes studio-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -60%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -60%) scale(1.15); }
}

.studio-logo-inner {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0D2050, #1E3A8A);
  border: 1.5px solid rgba(56,189,248,0.6);
  box-shadow: 0 0 28px rgba(56,189,248,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.studio-m {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -2px;
  text-shadow: 0 0 16px rgba(56,189,248,0.7);
}
.studio-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--ice-light);
  text-transform: uppercase;
}
.studio-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.credits-coming-soon {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(56,189,248,0.7);
  text-align: center;
  letter-spacing: 0.5px;
  font-style: italic;
}

.credit-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(56,189,248,0.2);
  box-shadow: var(--shadow-ice);
}

.credit-icon { font-size: 40px; margin-bottom: 8px; }
.credit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.credit-card p { font-size: 14px; color: var(--text-muted); }

/* ─── REWARD ANIMATION ─── */
:root {
  --reward-shake-duration: 1.2s;
  --reward-explode-duration: 0.5s;
  --reward-flash-duration: 0.3s;
  --reward-text-duration: 0.5s;
}

.reward-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 8, 24, 0.92);
  align-items: center;
  justify-content: center;
}

.reward-overlay.active {
  display: flex;
}

.reward-flash {
  position: fixed;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
}

.reward-flash.flash-active {
  animation: reward-flash-anim var(--reward-flash-duration) ease-out forwards;
}

@keyframes reward-flash-anim {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

.reward-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reward-present {
  font-size: 96px;
  line-height: 1;
  opacity: 0;
  transform: scale(1);
}

.reward-present.shake-active {
  opacity: 1;
  animation: reward-shake var(--reward-shake-duration) ease-in-out;
}

.reward-present.exploded {
  opacity: 0;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  transform: scale(1.4);
}

@keyframes reward-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  10% { transform: translateX(-8px) rotate(-8deg); }
  20% { transform: translateX(8px) rotate(8deg); }
  30% { transform: translateX(-8px) rotate(-8deg); }
  40% { transform: translateX(8px) rotate(8deg); }
  50% { transform: translateX(-10px) rotate(-10deg); }
  60% { transform: translateX(10px) rotate(10deg); }
  70% { transform: translateX(-10px) rotate(-10deg); }
  80% { transform: translateX(10px) rotate(10deg); }
  90% { transform: translateX(-6px) rotate(-6deg); }
}

.reward-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.reward-particle {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
}

.reward-particle.particle-active {
  animation: reward-particle-burst var(--reward-explode-duration) ease-out forwards;
}

@keyframes reward-particle-burst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--px), var(--py)) scale(0.3);
  }
}

.reward-message {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.reward-message.message-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity var(--reward-text-duration) ease-out, transform var(--reward-text-duration) ease-out;
  pointer-events: auto;
}

.reward-message p {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  text-shadow: 0 0 20px rgba(56,189,248,0.6);
  max-width: 320px;
}

/* ─── ARTIST SHARED CANVAS ─── */
.artist-draw-container {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 16px 16px 24px;
  gap: 10px;
  background: linear-gradient(160deg, #0A0F2E 0%, #1E3A8A 50%, #4C1D95 100%);
}

.artist-canvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 360px;
  padding: 8px 0;
}

.artist-player-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.artist-count-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(186,230,253,0.6);
}

.artist-canvas-el {
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  border: 2px solid rgba(124,58,237,0.5);
  box-shadow: 0 0 24px rgba(124,58,237,0.2), 0 4px 20px rgba(0,0,0,0.5);
  background: #0d1124;
  cursor: crosshair;
  touch-action: none;
}

.artist-canvas-hint {
  font-size: 12px;
  color: rgba(186,230,253,0.45);
  text-align: center;
  letter-spacing: 0.05em;
}
