:root {
  --ink: #3e2d34;
  --muted: #7c6870;
  --cream: #fffaf2;
  --paper: #fffdf8;
  --blush: #f8eee9;
  --pink: #ed8fba;
  --pink-deep: #d95c96;
  --red: #f05d4e;
  --sage: #bdcf85;
  --sage-deep: #6e883e;
  --sky: #acd8ed;
  --sky-deep: #3f7d9b;
  --butter: #f7efaa;
  --lavender: #d7c7ef;
  --line: rgba(62, 45, 52, .13);
  --shadow: 0 20px 50px rgba(86, 55, 67, .12), 0 3px 0 rgba(86, 55, 67, .05);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --sans: "Avenir Next", Avenir, "Nunito Sans", "Arial Rounded MT Bold", Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --theme: var(--pink);
  --theme-deep: var(--pink-deep);
  --theme-soft: #fde5f0;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overscroll-behavior: none;
}

html {
  background: var(--blush);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, .9) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, .8) 0 2px, transparent 3px),
    linear-gradient(135deg, #fbf1ed 0%, #f7ece8 48%, #f9f0e7 100%);
  font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body[data-theme="truth"] {
  --theme: var(--sage);
  --theme-deep: var(--sage-deep);
  --theme-soft: #eef4d8;
}

body[data-theme="dare"] {
  --theme: var(--pink);
  --theme-deep: var(--pink-deep);
  --theme-soft: #fde5f0;
}

body[data-theme="phone"] {
  --theme: var(--sky);
  --theme-deep: var(--sky-deep);
  --theme-soft: #e6f5fb;
}

body[data-theme="props"] {
  --theme: var(--butter);
  --theme-deep: #947c20;
  --theme-soft: #fff9cf;
}

body[data-theme="kind"] {
  --theme: var(--lavender);
  --theme-deep: #72599d;
  --theme-soft: #f0eafd;
}

button {
  color: inherit;
  font: inherit;
  touch-action: manipulation;
}

button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.page-orbit {
  position: fixed;
  border: 2px solid rgba(217, 92, 150, .12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 48vw;
  height: 48vw;
  top: -35vw;
  right: -10vw;
}

.orbit-two {
  width: 34vw;
  height: 34vw;
  bottom: -28vw;
  left: -10vw;
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1360px);
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  padding: max(16px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr) 24px;
  gap: 8px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 8px 8px 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.brand-flower {
  position: relative;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
}

.brand-flower span {
  position: absolute;
  top: 4px;
  left: 13px;
  width: 12px;
  height: 18px;
  border-radius: 70% 70% 55% 55%;
  background: var(--pink);
  transform-origin: 6px 14px;
}

.brand-flower span:nth-child(2) { transform: rotate(72deg); }
.brand-flower span:nth-child(3) { transform: rotate(144deg); }
.brand-flower span:nth-child(4) { transform: rotate(216deg); }
.brand-flower span:nth-child(5) { transform: rotate(288deg); }

.brand-flower::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: 14px;
  left: 14px;
  border-radius: 50%;
  background: var(--butter);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.deck-total {
  height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.deck-total b {
  color: var(--ink);
  font-size: 14px;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.icon-button:active {
  transform: scale(.94);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sound-off,
.icon-button[aria-pressed="false"] .sound-on {
  display: none;
}

.icon-button[aria-pressed="false"] .sound-off {
  display: block;
}

.main-stage {
  min-height: 0;
}

.screen {
  display: none;
  width: 100%;
  height: 100%;
}

.screen.is-active {
  display: grid;
  animation: screen-in .45s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing-screen {
  grid-template-columns: minmax(310px, .8fr) minmax(540px, 1.2fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(18px, 3.5vh, 36px) clamp(2px, 2vw, 24px);
}

.hero-copy {
  position: relative;
  align-self: center;
  padding-left: clamp(8px, 2vw, 30px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-deep);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 23px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  margin: clamp(12px, 2.2vh, 22px) 0 14px;
  font-family: var(--display);
  font-size: clamp(56px, 6.3vw, 88px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}

.hero-copy h1 em {
  position: relative;
  display: inline-block;
  margin: 0 .04em;
  color: var(--pink-deep);
  font-size: .62em;
  font-weight: 400;
  letter-spacing: -.03em;
}

.hero-copy h1 em::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 2%;
  bottom: -.04em;
  height: 5px;
  border-radius: 50%;
  background: var(--butter);
  transform: rotate(-2deg);
}

.hero-lede {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.38;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(20px, 3.2vh, 32px);
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-notes i {
  color: var(--pink-deep);
  font-style: normal;
  font-size: 15px;
}

.hero-scribble {
  width: min(65%, 260px);
  height: 60px;
  margin: 8px 0 0 70px;
  overflow: visible;
  opacity: .38;
  fill: none;
  stroke: var(--pink-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-stage {
  position: relative;
  width: 100%;
  height: min(100%, 590px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(290px, 1fr) 68px 40px;
  gap: 14px;
}

.choice-decoration.dots {
  position: absolute;
  z-index: -1;
  width: 105px;
  height: 105px;
  top: -22px;
  right: -18px;
  opacity: .28;
  background-image: radial-gradient(var(--pink-deep) 2px, transparent 2.5px);
  background-size: 14px 14px;
  transform: rotate(9deg);
}

.choice-card {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 42px);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  isolation: isolate;
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), box-shadow .24s ease;
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: calc(var(--radius-xl) - 8px);
}

.choice-card:active {
  transform: scale(.975) rotate(0deg) !important;
  box-shadow: 0 10px 25px rgba(86, 55, 67, .13);
}

@media (hover: hover) {
  .choice-card:hover {
    transform: translateY(-6px) rotate(0deg);
    box-shadow: 0 28px 60px rgba(86, 55, 67, .18);
  }
}

.truth-choice {
  color: #425322;
  background: var(--sage);
  transform: rotate(-1.25deg);
}

.dare-choice {
  color: #fffaf6;
  background: var(--pink);
  transform: translateY(8px) rotate(1.15deg);
}

.choice-kicker,
.choice-title,
.choice-prompt {
  position: relative;
  z-index: 2;
  display: block;
}

.choice-kicker {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .75;
}

.choice-title {
  margin-top: clamp(16px, 3vh, 30px);
  font-family: var(--display);
  font-size: clamp(45px, 5.1vw, 69px);
  line-height: 1;
  letter-spacing: -.055em;
}

.choice-prompt {
  margin-top: 10px;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
  opacity: .8;
}

.choice-arrow {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 23px;
  transition: transform .22s ease;
}

.choice-card:hover .choice-arrow {
  transform: rotate(45deg);
}

.choice-daisy {
  position: absolute;
  right: -3px;
  bottom: -7px;
  width: 155px;
  height: 155px;
  opacity: .5;
  transform: rotate(12deg);
}

.choice-daisy i {
  position: absolute;
  top: 14px;
  left: 56px;
  width: 50px;
  height: 84px;
  border-radius: 50% 50% 45% 45%;
  background: var(--cream);
  transform-origin: 25px 65px;
}

.choice-daisy i:nth-child(2) { transform: rotate(72deg); }
.choice-daisy i:nth-child(3) { transform: rotate(144deg); }
.choice-daisy i:nth-child(4) { transform: rotate(216deg); }
.choice-daisy i:nth-child(5) { transform: rotate(288deg); }

.choice-daisy b {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  top: 64px;
  left: 62px;
  border-radius: 50%;
  background: var(--pink);
}

.choice-ribbon {
  position: absolute;
  right: -8px;
  bottom: -2px;
  width: 150px;
  height: 118px;
  opacity: .6;
}

.choice-ribbon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--butter);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.surprise-button {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid rgba(240, 93, 78, .18);
  border-radius: var(--radius-md);
  background: var(--red);
  color: white;
  box-shadow: 0 12px 28px rgba(240, 93, 78, .18);
  cursor: pointer;
  transition: transform .2s ease;
}

.surprise-button:active { transform: scale(.985); }

.surprise-icon {
  font-size: 25px;
}

.surprise-button > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.surprise-button strong {
  font-size: 16px;
  letter-spacing: .02em;
}

.surprise-button small {
  font-size: 11px;
  font-weight: 700;
  opacity: .78;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.special-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.special-label {
  margin-right: 2px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
}

.special-row button {
  min-height: 35px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.special-row button:active {
  transform: scale(.96);
}

.special-row button span {
  margin-right: 3px;
  color: var(--pink-deep);
  font-size: 13px;
}

.card-screen {
  grid-template-rows: 60px minmax(0, 1fr);
  padding: 8px clamp(2px, 2vw, 22px) 6px;
}

.card-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.back-button,
.mini-reset {
  min-height: 40px;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}

.back-button {
  justify-self: start;
  padding: 0 10px 0 0;
}

.back-button span {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin-right: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .44);
  font-size: 17px;
}

.mini-reset {
  justify-self: end;
  color: var(--muted);
}

.round-progress {
  min-width: 210px;
  display: grid;
  grid-template-columns: auto 100px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(62, 45, 52, .1);
}

.progress-track i {
  display: block;
  width: 2%;
  height: 100%;
  border-radius: inherit;
  background: var(--theme-deep);
  transition: width .45s ease;
}

.play-area {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(280px, .62fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: stretch;
  padding: 7px 0 6px;
}

.prompt-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(64px, 8vh, 92px) clamp(50px, 8vw, 104px);
  border-radius: var(--radius-xl);
  background: var(--theme);
  color: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: background .4s ease;
}

.prompt-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: calc(var(--radius-xl) - 10px);
}

.prompt-card.card-enter {
  animation: card-flip .52s cubic-bezier(.22, .88, .28, 1) both;
}

@keyframes card-flip {
  0% { opacity: .25; transform: perspective(900px) rotateY(-8deg) translateX(22px) scale(.97); }
  100% { opacity: 1; transform: perspective(900px) rotateY(0) translateX(0) scale(1); }
}

.card-number {
  position: absolute;
  top: 31px;
  left: 34px;
  z-index: 2;
  color: var(--theme-deep);
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
}

.card-badge {
  position: absolute;
  top: 27px;
  right: 30px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(62, 45, 52, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  color: var(--theme-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.prompt-wrap {
  position: relative;
  z-index: 3;
  max-width: 780px;
  text-align: center;
}

.prompt-intro {
  display: block;
  margin-bottom: clamp(16px, 3vh, 26px);
  color: var(--theme-deep);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.prompt-wrap h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.prompt-card.long .prompt-wrap h2 {
  font-size: clamp(31px, 3.7vw, 52px);
}

.prompt-card.very-long .prompt-wrap h2 {
  font-size: clamp(27px, 3.15vw, 44px);
  line-height: 1.13;
}

.card-wave {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: -6%;
  width: 110%;
  height: 28%;
  opacity: .18;
  fill: var(--paper);
}

.card-flower {
  position: absolute;
  z-index: 1;
  width: 125px;
  height: 125px;
  opacity: .35;
}

.flower-a {
  left: -28px;
  bottom: -26px;
  transform: rotate(-18deg);
}

.flower-b {
  right: 3%;
  top: -50px;
  transform: scale(.64) rotate(24deg);
}

.card-flower i {
  position: absolute;
  top: 10px;
  left: 45px;
  width: 40px;
  height: 70px;
  border-radius: 50%;
  background: var(--paper);
  transform-origin: 20px 54px;
}

.card-flower i:nth-child(2) { transform: rotate(72deg); }
.card-flower i:nth-child(3) { transform: rotate(144deg); }
.card-flower i:nth-child(4) { transform: rotate(216deg); }
.card-flower i:nth-child(5) { transform: rotate(288deg); }

.card-flower b {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 49px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--theme-deep);
}

.round-controls {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.2vh, 22px);
  padding: 0 2px;
}

.turn-note {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 4px;
}

.turn-spark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--theme-soft);
  color: var(--theme-deep);
  font-size: 22px;
}

.turn-note div {
  display: grid;
  gap: 4px;
}

.turn-note small,
.timer-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.turn-note strong {
  font-family: var(--display);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.2;
}

.timer-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .46);
}

body[data-theme="truth"] .timer-panel {
  display: none;
}

.timer-copy {
  display: grid;
  gap: 3px;
}

.timer-copy strong {
  color: var(--theme-deep);
  font-family: var(--display);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: -.03em;
}

.timer-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.timer-actions > button:not(.timer-play) {
  min-height: 31px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.timer-actions > button.is-selected {
  border-color: var(--theme-deep);
  background: var(--theme-soft);
  color: var(--theme-deep);
}

.timer-play {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--theme-deep);
  color: white;
  cursor: pointer;
}

.timer-play svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.pause-icon,
.timer-play.is-running .play-icon {
  display: none;
}

.timer-play.is-running .pause-icon {
  display: block;
}

.timer-panel.is-done {
  animation: timer-done .65s ease 2;
}

@keyframes timer-done {
  50% { transform: scale(1.03); background: var(--theme-soft); }
}

.next-button {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px 15px 22px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(62, 45, 52, .18);
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.next-button:active {
  transform: scale(.98);
  box-shadow: 0 7px 18px rgba(62, 45, 52, .16);
}

.next-button span {
  display: grid;
  gap: 4px;
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1;
}

.next-button small {
  color: rgba(255, 255, 255, .63);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.next-button b {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--theme);
  color: var(--ink);
  font-size: 22px;
  transition: transform .2s ease;
}

.next-button:hover b {
  transform: translateX(3px);
}

.skip-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-style: italic;
  text-align: center;
}

.footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(124, 104, 112, .72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-note i {
  color: var(--pink-deep);
  font-size: 13px;
  font-style: normal;
}

dialog {
  width: min(90vw, 520px);
  padding: 42px;
  border: 0;
  border-radius: 32px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(62, 45, 52, .3);
  text-align: center;
}

dialog::backdrop {
  background: rgba(62, 45, 52, .34);
  backdrop-filter: blur(9px);
}

dialog[open] {
  animation: dialog-in .28s ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 23px;
  cursor: pointer;
}

.dialog-flower {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--theme-soft);
  color: var(--theme-deep);
  font-size: 27px;
}

.dialog-eyebrow {
  color: var(--pink-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

dialog h2 {
  margin: 8px 0 18px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -.04em;
}

dialog p {
  margin: 16px auto 22px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.45;
}

dialog ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  counter-reset: steps;
  text-align: left;
}

dialog li {
  position: relative;
  min-height: 44px;
  padding: 11px 12px 11px 47px;
  border-radius: 14px;
  background: var(--blush);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  counter-increment: steps;
}

dialog li::before {
  content: counter(steps);
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-weight: 900;
}

dialog li b {
  color: var(--ink);
}

.dialog-primary,
.dialog-secondary {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.dialog-primary {
  border: 0;
  background: var(--ink);
  color: white;
}

.dialog-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.dialog-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 15px 35px rgba(62, 45, 52, .25);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) and (orientation: landscape) {
  .app-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing-screen {
    grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr);
    gap: 24px;
  }

  .hero-copy h1 { font-size: clamp(50px, 6vw, 65px); }
  .choice-card { padding: 27px; }
  .choice-title { font-size: clamp(42px, 5vw, 56px); }
  .play-area { grid-template-columns: minmax(0, 1.6fr) minmax(260px, .6fr); gap: 20px; }
  .prompt-card { padding-left: 55px; padding-right: 55px; }
  .timer-panel { padding: 12px; }
}

@media (orientation: portrait), (max-width: 760px) {
  body {
    overflow: hidden;
  }

  .app-shell {
    min-height: 0;
    height: 100vh;
    height: 100dvh;
    grid-template-rows: 62px minmax(0, 1fr);
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .footer-note {
    display: none;
  }

  .landing-screen {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 24px;
    align-content: start;
    padding: 24px 0 18px;
  }

  .hero-copy {
    padding: 0 10px;
    text-align: center;
  }

  .eyebrow,
  .hero-notes {
    justify-content: center;
  }

  .hero-copy h1 {
    margin: 12px 0;
    font-size: clamp(53px, 11vw, 82px);
    line-height: .92;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-lede {
    margin: 0 auto;
    max-width: 600px;
    font-size: clamp(16px, 2.8vw, 21px);
  }

  .hero-notes { margin-top: 18px; }
  .hero-scribble { display: none; }

  .choice-stage {
    height: auto;
    min-height: 510px;
    grid-template-rows: minmax(280px, 1fr) 66px 42px;
  }

  .choice-title { font-size: clamp(47px, 8vw, 68px); }

  .card-screen {
    min-height: 0;
    grid-template-rows: 58px 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .play-area {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 18px;
  }

  .prompt-card {
    min-height: 0;
    padding: 74px clamp(35px, 8vw, 80px);
  }

  .prompt-wrap h2 { font-size: clamp(38px, 7vw, 59px); }
  .prompt-card.long .prompt-wrap h2 { font-size: clamp(33px, 6vw, 50px); }
  .prompt-card.very-long .prompt-wrap h2 { font-size: clamp(28px, 5vw, 42px); }

  .round-controls {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
    padding-bottom: 14px;
  }

  .turn-note { display: none; }
  .timer-panel { min-height: 82px; }
  .next-button { min-height: 82px; }
  .skip-note { grid-column: 1 / -1; }

  body[data-theme="truth"] .round-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    overflow-y: auto;
  }

  .brand-copy small,
  .deck-total,
  .mini-reset,
  .footer-note span {
    display: none;
  }

  .app-shell {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    grid-template-rows: 62px minmax(calc(100dvh - 86px), auto);
    padding-left: 12px;
    padding-right: 12px;
  }

  .landing-screen { gap: 20px; }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .hero-lede,
  .hero-notes { display: none; }

  .choice-stage {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 220px 62px auto;
    min-height: 560px;
  }

  .truth-choice,
  .dare-choice { transform: none; }
  .dare-choice { grid-row: 2; }
  .surprise-button { grid-row: 3; }
  .special-row { grid-row: 4; flex-wrap: wrap; }
  .special-label { width: 100%; text-align: center; }

  .card-toolbar {
    grid-template-columns: 1fr auto;
  }

  .round-progress { min-width: 0; grid-template-columns: 1fr; text-align: right; }
  .progress-track { display: none; }

  .play-area { grid-template-rows: minmax(400px, 1fr) auto; }
  .prompt-card { min-height: 400px; padding: 70px 32px; }
  .prompt-wrap h2 { font-size: clamp(31px, 9vw, 46px); }
  .prompt-card.long .prompt-wrap h2 { font-size: clamp(28px, 8vw, 39px); }
  .prompt-card.very-long .prompt-wrap h2 { font-size: clamp(24px, 7vw, 34px); }

  .round-controls,
  body[data-theme="truth"] .round-controls {
    grid-template-columns: 1fr;
  }

  .timer-panel { min-height: 74px; }
  .next-button { min-height: 78px; }

  dialog { padding: 35px 22px 25px; }
  dialog h2 { font-size: 32px; }
  .dialog-buttons { grid-template-columns: 1fr; }
}

@media (max-height: 650px) and (orientation: landscape) {
  .app-shell {
    grid-template-rows: 54px minmax(0, 1fr) 18px;
    padding-top: 8px;
    padding-bottom: 7px;
  }

  .landing-screen { padding-top: 8px; padding-bottom: 8px; }
  .choice-stage { grid-template-rows: minmax(230px, 1fr) 60px 36px; }
  .hero-copy h1 { font-size: 55px; }
  .hero-lede { font-size: 17px; }
  .hero-notes { margin-top: 16px; }
  .hero-scribble { display: none; }
  .card-screen { grid-template-rows: 46px minmax(0, 1fr); }
  .card-toolbar { transform: scale(.94); transform-origin: center; }
  .prompt-card { padding-top: 55px; padding-bottom: 55px; }
  .next-button { min-height: 72px; }
  .timer-panel { padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
