:root {
  color-scheme: dark;
  --bg: #10131f;
  --bg-2: #17121f;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f9f7ff;
  --muted: #c8c4d6;
  --soft: #928ca4;
  --violet: #7557ff;
  --pink: #e84d8a;
  --gold: #ffd84f;
  --cyan: #5ad7ff;
  --green: #7be38f;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-text);
  background:
    linear-gradient(180deg, rgba(16, 19, 31, 0.52), rgba(16, 19, 31, 0.98) 46%, #0b0e18 100%),
    radial-gradient(circle at 20% 12%, rgba(117, 87, 255, 0.24), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(232, 77, 138, 0.20), transparent 25%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--text);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
}
a { color: inherit; }
img { max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(calc(100% - 28px), var(--max));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(12, 15, 26, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
  text-decoration: none;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 0 0 1px var(--line); }
.brand span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 21px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(12px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}
.nav-links a, .footer nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover, .footer nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.language-picker {
  position: relative;
  flex: 0 0 auto;
}
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 64px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.language-toggle:hover, .language-picker.is-open .language-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
}
.language-toggle:hover { transform: translateY(-1px); }
.language-flag {
  font-size: 18px;
  line-height: 1;
}
.language-code {
  min-width: 20px;
  font-size: 12px;
  letter-spacing: 0;
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(148px, 1fr));
  gap: 4px;
  width: min(344px, calc(100vw - 32px));
  max-height: min(430px, calc(100vh - 130px));
  padding: 8px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(16, 19, 31, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(20px);
}
.language-picker.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.language-option {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.language-option:hover, .language-option[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.1);
}
.language-option-flag { font-size: 18px; line-height: 1; }
.language-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}
.language-option-code {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.small-cta, .ghost-button, .store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.small-cta {
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), #9c5cff);
  font-weight: 700;
}
.small-cta:hover, .store-button:hover, .ghost-button:hover { transform: translateY(-2px); }
main {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 56px 0 42px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-heading p, .section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 18px 0 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 720;
}
h1::first-line { color: var(--text); }
.hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.store-button {
  width: 203px;
  min-height: 60px;
  padding: 7px 14px 7px 12px;
  gap: 9px;
  border-radius: 11px;
  background: #050507;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.store-button:hover {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}
.store-apple {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  transform: translateY(-1px);
}
.store-text {
  display: grid;
  justify-items: start;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.store-text span {
  font-size: 10px;
  font-weight: 520;
}
.store-text strong {
  margin-top: 3px;
  font-size: 21px;
  font-weight: 620;
}
.ghost-button {
  min-height: 68px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 680;
}
.ghost-button span {
  margin-left: 6px;
  color: var(--gold);
}
.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: #11131d;
  box-shadow: var(--shadow);
}
.party-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.92;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 19, 31, 0.14), rgba(16, 19, 31, 0.02) 48%, rgba(16, 19, 31, 0.12)),
    linear-gradient(180deg, rgba(16, 19, 31, 0.04), rgba(16, 19, 31, 0.30));
}
.hero-ui {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(10, 13, 24, 0.74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  pointer-events: none;
}
.hero-ui span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-ui strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.18;
}
.timer-chip {
  top: 24px;
  right: 24px;
  min-width: 108px;
  padding: 13px 15px;
  border-radius: 16px;
  animation: hoverChip 5.5s ease-in-out infinite;
}
.timer-chip strong {
  color: var(--gold);
  font-size: 26px;
}
.question-chip {
  left: 24px;
  bottom: 28px;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 6px;
  animation: hoverChip 6s ease-in-out 0.4s infinite;
}
.vote-chip {
  right: 24px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  animation: hoverChip 6.4s ease-in-out 0.8s infinite;
}
.mini-avatars {
  display: inline-flex !important;
  gap: 0;
}
.mini-avatars img {
  width: 24px;
  height: 24px;
  margin-left: -6px;
  border-radius: 50%;
  border: 2px solid rgba(10, 13, 24, 0.9);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
}
.mini-avatars img:first-child { margin-left: 0; }
.phone {
  position: relative;
  width: 210px;
  aspect-ratio: 9 / 19.5;
  border: 10px solid #0d111d;
  border-radius: 34px;
  background: linear-gradient(180deg, #18203a, #0d1020);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.phone-bar {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #060811;
}
.role-card, .home-screen, .role-screen, .location-screen, .reel-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  text-align: center;
}
.role-card { background: radial-gradient(circle at 50% 26%, rgba(117, 87, 255, 0.62), transparent 34%), linear-gradient(180deg, #221451, #11152a); }
.role-card img, .home-screen img { width: 88px; height: 88px; border-radius: 22px; margin-bottom: 16px; }
.role-card small, .role-screen small, .location-screen small, .reel-scene small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.role-card strong, .role-screen strong, .location-screen strong, .reel-scene strong {
  margin-top: 7px;
  color: var(--gold);
  font-size: 30px;
  line-height: 0.95;
  text-transform: uppercase;
}
.role-card span, .role-screen span, .reel-scene span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.section {
  padding: 84px 0 0;
  scroll-margin-top: 116px;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.section-heading h2, .gameplay-copy h2, .final-cta h2 {
  margin: 0;
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step, .feature-grid article, .pack, .faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}
.step {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 22px;
  border-radius: 18px;
}
.step-number {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 42px;
  font-weight: 760;
  line-height: 1;
}
.step-preview {
  position: relative;
  z-index: 1;
  height: 240px;
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.role-preview,
.location-preview,
.question-preview,
.vote-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.role-preview {
  flex-direction: column;
  gap: 11px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 88, 82, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(55, 42, 67, 0.92), rgba(20, 18, 30, 0.92));
}
.role-symbol {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 88, 82, 0.12);
  box-shadow: 0 0 32px rgba(255, 88, 82, 0.26);
}
.role-symbol img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.role-preview strong {
  color: #ff615b;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 780;
  text-transform: uppercase;
  text-align: center;
}
.role-preview small {
  max-width: 220px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}
.location-preview {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  background: #161421;
}
.location-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.location-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.76) 100%);
}
.location-preview span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
}
.location-preview strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1;
  font-weight: 620;
  text-transform: none;
  letter-spacing: 0;
}
.location-preview small {
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 680;
}
.question-preview {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(48, 45, 61, 0.98), rgba(32, 30, 43, 0.98));
}
.step:nth-child(3) .question-preview {
  height: 430px;
  justify-content: space-between;
}
.question-preview span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--text);
  font-size: 14px;
  line-height: 1.1;
}
.question-preview span:first-child {
  margin-right: 34px;
  background: rgba(117, 87, 255, 0.26);
}
.question-preview span:last-child {
  margin-left: 52px;
}
.question-preview span:nth-child(2) {
  margin-left: 26px;
}
.question-preview span:nth-child(3) {
  margin-right: 76px;
  background: rgba(255, 255, 255, 0.10);
}
.question-preview img {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.18);
}
.question-typing {
  width: fit-content;
  min-width: 112px;
}
.question-typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  animation: typingPulse 1.25s ease-in-out infinite;
}
.question-typing i:nth-of-type(2) { animation-delay: 0.14s; }
.question-typing i:nth-of-type(3) { animation-delay: 0.28s; }
.vote-preview {
  height: 430px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 12px;
  background:
    radial-gradient(circle at 15% 95%, rgba(255, 88, 82, 0.20), transparent 36%),
    linear-gradient(180deg, rgba(27, 24, 39, 0.98), rgba(18, 16, 28, 0.98));
}
.vote-stage {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  transition: opacity 220ms ease, transform 220ms ease;
}
.vote-stage-discussion {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}
.vote-stage-result {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}
.vote-demo.has-result .vote-stage-discussion {
  display: none;
  opacity: 0;
  transform: translateY(-8px);
}
.vote-demo.has-result .vote-stage-result {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.vote-title {
  width: 100%;
  display: grid;
  gap: 4px;
  text-align: center;
}
.vote-title strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.05;
  font-weight: 720;
  text-transform: uppercase;
}
.vote-title small {
  color: var(--soft);
  font-size: 11.5px;
  line-height: 1.15;
}
.vote-grid {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 14px;
}
.vote-player {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 10px 6px 9px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.vote-player:hover {
  transform: translateY(-1px);
}
.vote-player.is-selected {
  background: linear-gradient(180deg, rgba(255, 88, 82, 0.26), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 0 0 2px #ff615b, 0 10px 24px rgba(255, 88, 82, 0.14);
}
.vote-player img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.20);
}
.vote-player span {
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
}
.vote-submit {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 190px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #d9514d;
  color: #fff;
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(217, 81, 77, 0.18);
}
.mini-result-banner {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(45, 225, 105, 0.18), rgba(255, 255, 255, 0.07));
}
.mini-result-banner.is-spies {
  background: linear-gradient(90deg, rgba(255, 88, 82, 0.22), rgba(255, 255, 255, 0.07));
}
.mini-result-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}
.mini-result-banner span,
.mini-location span,
.mini-score span {
  display: grid;
}
.mini-result-banner strong {
  color: #22e86b;
  font-size: 15px;
  line-height: 1;
  font-weight: 780;
  text-transform: uppercase;
}
.mini-result-banner.is-spies strong {
  color: #ff615b;
}
.mini-result-banner small {
  color: var(--soft);
  font-size: 10px;
  line-height: 1.2;
}
.mini-result-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.mini-result-card b {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(10, 9, 17, 0.42);
  color: var(--text);
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
}
.mini-result-card b span {
  color: var(--accent);
}
.mini-location {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 13px;
  background: #15131f;
}
.mini-location img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}
.mini-location::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.78));
}
.mini-location span {
  position: relative;
  z-index: 1;
  padding: 0 10px 9px;
}
.mini-location small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  line-height: 1;
}
.mini-location strong {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.mini-score {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.mini-score span {
  min-height: 62px;
  place-items: center;
  gap: 3px;
  padding: 7px 4px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 9, 17, 0.32);
}
.mini-score img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
}
.mini-score small {
  color: var(--soft);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
}
.mini-score strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1;
}
.vote-reset {
  align-self: center;
  min-height: 28px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(117, 87, 255, 0.86);
  color: #fff;
  font-size: 10.5px;
  font-weight: 720;
  text-transform: uppercase;
  cursor: pointer;
}
.step h3, .feature-grid h3, .pack h3 {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 690;
}
.step p, .feature-grid p, .pack p, .gameplay-copy p, .faq p, .final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.gameplay {
  margin-top: 84px;
  scroll-margin-top: 116px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(117, 87, 255, 0.20), rgba(232, 77, 138, 0.10)), rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}
.gameplay-device {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 52% 50%, rgba(117, 87, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(90, 215, 255, 0.10), rgba(255, 216, 79, 0.08));
}
.gameplay-phone {
  width: min(230px, 58%);
  border-width: 8px;
  border-radius: 38px;
  animation: phoneFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.34));
}
.screen-track {
  position: absolute;
  inset: 0;
}
.screen-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  animation: phoneScreenCycle 12s infinite;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.slide-role { animation-delay: 3s; }
.slide-timer { animation-delay: 6s; }
.slide-result { animation-delay: 9s; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.feature-grid article {
  min-height: 184px;
  padding: 24px 22px;
  border-radius: 18px;
}
.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 216, 79, 0.14);
  color: var(--gold);
  font-size: 13px;
  font-weight: 720;
}
.pack-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.pack {
  border-radius: 16px;
  overflow: hidden;
  min-width: 160px;
}
.pack img {
  width: 100%;
  aspect-ratio: 163 / 114;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  filter: contrast(1.06) saturate(1.04);
}
.pack h3, .pack p { padding: 0 14px; }
.pack h3 {
  font-size: 17px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.pack p { padding-bottom: 16px; font-size: 14px; }
.screenshots { padding-top: 74px; }
.screen-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 18px;
  align-items: start;
}
.app-shot {
  position: relative;
  margin: 0;
  min-width: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.app-shot::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.app-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  border-radius: inherit;
}
.app-shot figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(10, 13, 24, 0.72);
  color: var(--text);
  font-size: 13px;
  font-weight: 680;
  backdrop-filter: blur(12px);
}
.reactions {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: stretch;
}
.rating-card,
.review-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}
.rating-card {
  min-height: 268px;
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 216, 79, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(117, 87, 255, 0.20), rgba(255, 255, 255, 0.07));
}
.rating-score {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}
.rating-headline {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.rating-score strong {
  font-size: clamp(72px, 8vw, 116px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 650;
}
.rating-count {
  margin-bottom: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}
.stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 24px rgba(255, 216, 79, 0.26);
}
.rating-card > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
  overflow: visible;
}
.review-card {
  min-height: 286px;
  padding: 22px;
  border-radius: 22px;
  transform: translateY(0);
  animation: reviewFloat 8s ease-in-out infinite;
}
.review-card:nth-child(2) { animation-delay: -2s; }
.review-card:nth-child(3) { animation-delay: -4s; }
.review-card:nth-child(4) { animation-delay: -1s; }
.review-card:nth-child(5) { animation-delay: -3s; }
.review-card:nth-child(6) { animation-delay: -5s; }
.review-avatar {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 14px 32px rgba(0, 0, 0, 0.24);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.review-card p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}
.review-card span {
  display: block;
  margin-top: 18px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 680;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.faq-item {
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.faq-item.is-open {
  background: linear-gradient(135deg, rgba(117, 87, 255, 0.18), rgba(255, 255, 255, 0.075));
  border-color: rgba(255, 216, 79, 0.30);
}
.faq-question {
  width: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 20px 18px 20px 20px;
  font-size: 18px;
  font-weight: 680;
  text-align: left;
}
.faq-question i {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: var(--gold);
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.faq-question i::after {
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-question i {
  background: rgba(255, 216, 79, 0.16);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-question i::after {
  transform: rotate(0deg);
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, transform 0.32s ease;
}
.faq-answer > p {
  margin: 0;
  padding: 0 20px 22px;
}
.faq-item.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}
.seo-copy {
  margin-top: 24px;
  max-width: 860px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}
.article-main {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 38px 0 70px;
}
.article-hero {
  padding: 46px 0 24px;
}
.article-hero .eyebrow {
  margin-bottom: 14px;
}
.article-hero h1 {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 76px);
}
.article-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}
.article-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.article-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.article-cta-primary {
  border-color: rgba(255, 255, 255, 0.10);
  background: #050507;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}
.article-cta-primary .store-apple {
  font-size: 24px;
  line-height: 0.85;
}
.article-cta-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--soft);
}
.article-body {
  display: grid;
  gap: 22px;
}
.article-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
}
.article-panel h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.12;
}
.article-panel p,
.article-panel li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.article-panel p {
  margin: 0;
}
.article-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}
.legal-document {
  display: grid;
  gap: 18px;
}
.legal-document h2 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.18;
}
.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.legal-document p,
.legal-document ul {
  margin: 0;
}
.legal-document ul {
  padding-left: 22px;
}
.legal-updated {
  margin-top: 14px;
  color: var(--soft);
  font-size: 14px;
}
.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.article-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--soft);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}
.final-cta {
  margin: 84px 0 34px;
  scroll-margin-top: 116px;
  min-height: 168px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #5635ff, #874dff 48%, #d94f98);
  box-shadow: var(--shadow);
}
.final-cta > img { width: 92px; height: 92px; border-radius: 22px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2); }
.final-cta .store-button { box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24); }
.footer {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--soft);
  font-size: 13px;
}
.footer .brand {
  flex: 0 0 auto;
}
.footer .brand span {
  overflow: visible;
  text-overflow: clip;
}
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes reel {
  0%, 28% { opacity: 1; transform: translateX(0); }
  33%, 100% { opacity: 0; transform: translateX(-18px); }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-0.8deg); }
  50% { transform: translateY(-7px) rotate(0.8deg); }
}
@keyframes phoneFloatMobile {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-5px) rotate(0.6deg); }
}
@keyframes phoneScreenCycle {
  0% { opacity: 0; transform: scale(1.025); }
  5%, 22% { opacity: 1; transform: scale(1); }
  28%, 100% { opacity: 0; transform: scale(1.025); }
}
@keyframes reviewFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes hoverChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes typingPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .site-header { justify-content: space-between; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 34px; }
  .hero-visual { min-height: 520px; }
  .steps, .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading, .gameplay, .reactions, .final-cta { grid-template-columns: 1fr; }
  .final-cta { text-align: center; justify-items: center; }
}
@media (max-width: 700px) {
  main, .site-header, .footer { width: min(calc(100% - 32px), var(--max)); }
  .site-header { top: 8px; min-height: 62px; padding: 8px 9px; gap: 8px; border-radius: 16px; }
  .brand { flex: 1 1 auto; }
  .brand img { width: 34px; height: 34px; border-radius: 10px; }
  .brand span { font-size: 15px; }
  .language-toggle { min-width: 58px; height: 38px; border-radius: 12px; gap: 5px; }
  .language-flag { font-size: 16px; }
  .language-code { font-size: 11px; }
  .language-menu {
    grid-template-columns: 1fr;
    top: calc(100% + 8px);
    right: -76px;
    width: min(292px, calc(100vw - 32px));
    max-height: min(440px, calc(100vh - 116px));
  }
  .small-cta { height: 38px; padding: 0 12px; font-size: 13px; }
  .hero { padding: 34px 0 22px; gap: 18px; }
  h1 { max-width: 100%; font-size: clamp(42px, 13vw, 68px); }
  .hero-actions { display: flex; align-items: center; gap: 10px; }
  .store-button { width: 172px; min-height: 52px; padding: 6px 11px 6px 10px; gap: 8px; }
  .store-apple { font-size: 28px; }
  .store-text span { font-size: 8.5px; }
  .store-text strong { font-size: 18px; }
  .ghost-button { min-height: 60px; flex: 1; padding: 0 14px; }
  .hero-visual {
    display: block;
    min-height: 260px;
    order: -1;
    border-radius: 20px;
  }
  .hero .hero-visual {
    margin-top: 8px;
  }
  .party-photo {
    object-position: 50% 48%;
  }
  .hero-ui { transform: none; }
  .timer-chip {
    top: 14px;
    right: 14px;
    min-width: 86px;
    padding: 10px 12px;
    border-radius: 14px;
  }
  .timer-chip strong { font-size: 20px; }
  .question-chip {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 11px 13px;
    border-radius: 14px 14px 14px 5px;
  }
  .question-chip strong { font-size: 13px; }
  .vote-chip { display: none; }
  .people span { width: 78px; height: 108px; }
  .table { height: 150px; }
  .hero-phone { right: 8%; width: 176px; }
  .section { padding-top: 58px; }
  .section-heading { gap: 12px; margin-bottom: 18px; }
  .steps, .feature-grid, .faq-list { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .role-preview,
  .location-preview,
  .question-preview { height: 180px; }
  .step:nth-child(3) .question-preview { height: 220px; }
  .role-symbol { width: 56px; height: 56px; }
  .role-preview strong { font-size: 22px; }
  .location-preview small { font-size: 29px; }
  .question-preview { gap: 10px; padding: 14px; }
  .question-preview span { min-height: 36px; font-size: 12.5px; }
  .question-preview img { width: 24px; height: 24px; }
  .vote-demo.has-result {
    height: auto;
  }
  .vote-demo.has-result .vote-stage-result {
    min-height: 0;
  }
  .gameplay { margin-top: 58px; padding: 18px; border-radius: 20px; }
  .gameplay-copy { order: -1; }
  .gameplay-device { min-height: 430px; border-radius: 18px; padding: 18px 0; }
  .gameplay-phone { width: min(198px, 68%); animation-name: phoneFloatMobile; }
  .reactions { padding-top: 58px; }
  .rating-card { min-height: auto; padding: 22px; border-radius: 20px; }
  .rating-headline { gap: 12px; }
  .rating-count { margin-bottom: 6px; }
  .review-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }
  .review-card {
    flex: 0 0 82%;
    min-height: 240px;
    scroll-snap-align: start;
  }
  .article-main { width: min(calc(100% - 32px), 920px); padding-top: 18px; }
  .article-hero { padding: 30px 0 14px; }
  .article-hero p { font-size: 16px; }
  .article-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .article-cta {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 14px;
  }
  .article-panel { padding: 20px; border-radius: 18px; }
  .article-panel h2 { font-size: 23px; }
  .screen-row {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding: 0 0 16px;
    scroll-snap-type: x mandatory;
  }
  .app-shot {
    flex: 0 0 70%;
    max-width: 260px;
    scroll-snap-align: start;
    border-radius: 22px;
  }
  .app-shot.is-featured {
    flex-basis: 76%;
  }
  .app-shot figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
  }
  .footer { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
