:root {
  color-scheme: dark;
  --bg: #110711;
  --ink: #fff7fb;
  --muted: rgba(255, 247, 251, .68);
  --line: rgba(255, 255, 255, .14);
  --rose: #ff4da6;
  --hot: #ff2f78;
  --violet: #7b5cff;
  --blue: #56c7ff;
  --glass: rgba(255, 255, 255, .12);
  --white-sheet: #fff8fb;
  --sheet-ink: #19141d;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
}

body {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 76, 165, .42), transparent 28rem),
    radial-gradient(circle at 88% 2%, rgba(83, 176, 255, .35), transparent 24rem),
    radial-gradient(circle at 55% 86%, rgba(123, 92, 255, .36), transparent 28rem),
    linear-gradient(150deg, #120711 0%, #1b0b1e 48%, #070914 100%);
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  color: inherit;
}

input {
  min-width: 0;
  border: 0;
  outline: 0;
}

.hidden {
  display: none !important;
}

.aurora {
  position: fixed;
  inset: -35%;
  pointer-events: none;
  background:
    conic-gradient(from 120deg, transparent, rgba(255, 62, 150, .18), transparent, rgba(86, 199, 255, .16), transparent),
    radial-gradient(circle, rgba(255, 255, 255, .1), transparent 48%);
  filter: blur(35px);
  animation: aurora 18s ease-in-out infinite alternate;
  opacity: .9;
}

@keyframes aurora {
  from {
    transform: rotate(-8deg) scale(1);
  }
  to {
    transform: rotate(13deg) scale(1.12);
  }
}

.floating-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  overflow: hidden;
}

.tap-heart {
  position: fixed;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 77, 166, .92);
  animation: heart-pop 950ms ease forwards;
}

@keyframes heart-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.3) rotate(-18deg);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -220%) scale(1.8) rotate(18deg);
  }
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 760px) {
  .app-shell {
    width: min(100%, 980px);
  }
}

.register-screen {
  min-height: 100dvh;
  display: grid;
  align-content: center;
  padding: max(28px, env(safe-area-inset-top)) 24px max(26px, env(safe-area-inset-bottom));
  text-align: center;
}

.logo-orb {
  width: 116px;
  height: 116px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 35px;
  font-size: 60px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .14)),
    radial-gradient(circle at 35% 25%, #fff, #ff8cc4 35%, #7b5cff 80%);
  color: #5c0630;
  box-shadow: 0 30px 80px rgba(255, 47, 120, .4), inset 0 1px 0 rgba(255, 255, 255, .8);
  animation: floaty 3.8s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
}

.register-screen h1 {
  margin: 0;
  font-size: clamp(48px, 16vw, 76px);
  line-height: .9;
  letter-spacing: 0;
}

.lead {
  width: min(100%, 350px);
  margin: 18px auto 26px;
  color: var(--muted);
  line-height: 1.45;
}

.input-card {
  display: grid;
  gap: 10px;
  text-align: left;
  margin: 0 0 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
  backdrop-filter: blur(22px);
}

.input-card span {
  font-size: 13px;
  color: var(--muted);
}

.input-card input {
  width: 100%;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.primary-action {
  width: 100%;
  min-height: 58px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff4da6, #7b5cff 62%, #56c7ff);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 22px 58px rgba(255, 77, 166, .35);
}

.tiny {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.main-screen {
  min-height: 100dvh;
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}

.hero-card {
  position: relative;
  padding: max(22px, env(safe-area-inset-top)) 18px 82px;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .36), transparent 8rem),
    radial-gradient(circle at 85% 24%, rgba(108, 214, 255, .24), transparent 10rem),
    linear-gradient(145deg, #ff4da6 0%, #935fff 48%, #36bfff 115%);
  box-shadow: var(--shadow);
}

.hero-top {
  display: grid;
  grid-template-columns: 54px 1fr 50px;
  gap: 12px;
  align-items: center;
}

.avatar,
.glass-icon {
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38);
  backdrop-filter: blur(20px);
}

.avatar {
  width: 54px;
  height: 54px;
  font-weight: 950;
  font-size: 24px;
}

.glass-icon {
  width: 50px;
  height: 50px;
  font-size: 26px;
}

.hello {
  margin: 0;
  font-size: 23px;
  font-weight: 950;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b8ffde;
  box-shadow: 0 0 0 0 rgba(184, 255, 222, .8);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 12px rgba(184, 255, 222, 0);
  }
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.quick-card {
  min-height: 104px;
  padding: 12px 9px;
  display: grid;
  align-content: space-between;
  border-radius: 24px;
  text-align: left;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32);
  backdrop-filter: blur(20px);
}

.quick-card span:last-child {
  font-size: 13px;
  font-weight: 900;
}

.quick-3d {
  font-size: 32px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .25));
}

.love-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -34px;
  min-height: 78px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 28px;
  background: rgba(255, 248, 252, .92);
  color: #1b1420;
  box-shadow: 0 18px 50px rgba(33, 9, 32, .22);
}

.love-note b {
  display: block;
  font-size: 16px;
}

.love-note span {
  display: block;
  margin-top: 4px;
  color: #7a6878;
  font-size: 12px;
}

.love-note i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
  color: #fff;
  font-style: normal;
  font-weight: 950;
}

.content-sheet {
  margin-top: 58px;
  padding: 20px 18px 28px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: var(--white-sheet);
  color: var(--sheet-ink);
  min-height: 55dvh;
  box-shadow: 0 -22px 64px rgba(0, 0, 0, .2);
}

.search-pill {
  min-height: 60px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 0 12px 0 17px;
  border-radius: 24px;
  background: #f2edf3;
}

.search-pill span {
  color: #7d7884;
  font-size: 28px;
}

.search-pill input {
  background: transparent;
  color: #1c1720;
  font-weight: 750;
}

.search-pill button,
.section-title button,
.identity-card,
.mode,
.proposal-actions button,
.custom-video-modal button {
  border-radius: 18px;
  background: #17111c;
  color: #fff;
  padding: 11px 14px;
  font-weight: 900;
}

.identity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 20px;
}

.identity-card {
  display: grid;
  gap: 5px;
  text-align: left;
  background: linear-gradient(145deg, #201727, #34203a);
}

.identity-card span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.identity-card b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.identity-card.partner {
  background: linear-gradient(145deg, #fff, #f4ecff);
  color: #201727;
  border: 1px solid #eee2f1;
}

.identity-card.partner span {
  color: #8c7f8d;
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 14px;
}

.section-title h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
}

.big-tile,
.small-tile,
.media-card,
.call-preview,
.chat-box {
  border-radius: 28px;
  background: #f5f1f6;
  border: 1px solid rgba(21, 17, 24, .05);
}

.big-tile {
  min-height: 220px;
  padding: 20px;
  grid-row: span 2;
}

.tile-icon {
  display: block;
  font-size: 60px;
  color: #ff4da6;
}

.big-tile h3 {
  margin: 28px 0 8px;
  font-size: 25px;
}

.big-tile p,
.small-tile p {
  color: #756d78;
  margin: 0;
}

.small-tile {
  min-height: 104px;
  padding: 16px;
}

.small-tile span {
  font-size: 28px;
}

.small-tile b {
  display: block;
  margin-top: 10px;
  font-size: 17px;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 13px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.category-tabs button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1eaf2;
  color: #4e4652;
  font-weight: 900;
}

.category-tabs button.active {
  background: #17111c;
  color: #fff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.media-card {
  min-height: 178px;
  padding: 14px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, var(--card-glow, rgba(255, 77, 166, .35)), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .5), transparent 60%);
}

.media-card > * {
  position: relative;
}

.media-card .poster {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .65);
  font-size: 28px;
}

.media-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.media-card p {
  margin: 0 0 12px;
  color: #716974;
  font-size: 13px;
}

.media-card button {
  width: max-content;
  padding: 9px 12px;
  border-radius: 14px;
  background: #17111c;
  color: #fff;
  font-weight: 900;
}

.call-preview {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: linear-gradient(150deg, #150b19, #301432);
}

.call-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b0710;
}

#localVideo {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 96px;
  height: 128px;
  border-radius: 24px;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, .7);
}

.call-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: rgba(255, 255, 255, .68);
}

.mode-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.mode {
  background: #ede8ef;
  color: #4a424e;
}

.mode.active {
  color: #fff;
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
}

.chat-box {
  min-height: 300px;
  max-height: 390px;
  overflow-y: auto;
  padding: 14px;
}

.message {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 10px;
  padding: 11px 13px;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(22, 16, 24, .08);
}

.message.me {
  margin-left: auto;
  border-radius: 18px 18px 6px 18px;
  background: linear-gradient(135deg, #ffecf6, #ecf4ff);
}

.message small {
  display: block;
  margin-bottom: 4px;
  color: #7f7782;
  font-weight: 800;
}

.sticker-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 12px 0;
  scrollbar-width: none;
}

.sticker-row button {
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #ffe7f4);
  color: #211924;
  font-weight: 950;
  border: 1px solid #f0d9e7;
}

.chat-input {
  min-height: 56px;
  display: grid;
  grid-template-columns: 44px 1fr 48px;
  gap: 8px;
  align-items: center;
  padding: 7px;
  border-radius: 23px;
  background: #f1ecf2;
}

.chat-input button {
  height: 42px;
  border-radius: 16px;
  background: #fff;
  color: #211924;
  font-size: 22px;
}

.chat-input input {
  background: transparent;
  color: #211924;
  font-weight: 700;
}

.bottom-dock {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 20;
  width: min(360px, calc(100% - 34px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 9px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 18px 50px rgba(18, 7, 18, .38), inset 0 1px 0 rgba(255, 255, 255, .35);
  backdrop-filter: blur(26px);
}

.dock {
  height: 54px;
  border-radius: 20px;
  background: transparent;
  font-size: 24px;
  color: rgba(255, 255, 255, .72);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.dock.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 77, 166, .92), rgba(123, 92, 255, .86));
  transform: translateY(-3px);
}

dialog {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

dialog::backdrop {
  background: rgba(8, 4, 10, .62);
  backdrop-filter: blur(12px);
}

.profile-modal,
.proposal-modal,
.custom-video-modal {
  width: min(388px, calc(100% - 28px));
  border-radius: 34px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 248, 252, .94);
  color: #1d1721;
  box-shadow: var(--shadow);
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 17px;
  background: #f1eaf2;
  color: #1d1721;
  font-size: 25px;
}

.profile-heart {
  width: 92px;
  height: 92px;
  margin: 12px auto 14px;
  display: grid;
  place-items: center;
  border-radius: 31px;
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
  color: #fff;
  font-size: 48px;
}

.profile-modal h2,
.proposal-modal h2,
.custom-video-modal h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.profile-modal p,
.proposal-modal p,
.custom-video-modal p {
  color: #706675;
}

.profile-modal button:not(.close),
.custom-video-modal button {
  width: 100%;
  min-height: 52px;
  border-radius: 21px;
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
  color: #fff;
  font-weight: 950;
}

.custom-video-modal input {
  width: 100%;
  height: 56px;
  margin: 12px 0;
  padding: 0 16px;
  border-radius: 20px;
  background: #f1ecf2;
  color: #211924;
}

.session-window {
  width: min(920px, calc(100% - 18px));
  max-width: 920px;
  border-radius: 30px;
  overflow: hidden;
  background: #08060b;
  box-shadow: var(--shadow);
}

.session-window.minimized {
  transform: translateY(38dvh) scale(.94);
}

.session-window header,
.session-window footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.session-window header span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
}

.window-actions {
  display: flex;
  gap: 6px;
}

.window-actions button {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .12);
}

.watch-stage {
  position: relative;
  min-height: 54dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 77, 166, .28), transparent 14rem),
    linear-gradient(145deg, #120612, #05060d);
}

.watch-stage video {
  width: 100%;
  max-height: 68dvh;
  background: #000;
}

.watch-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%) translateY(16px) scale(.96);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06)),
    rgba(12, 9, 18, .62);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .46);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.watch-controls.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.watch-controls button {
  min-width: 58px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .42), transparent 40%),
    linear-gradient(135deg, rgba(255, 77, 166, .82), rgba(123, 92, 255, .82));
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(123, 92, 255, .26);
}

.watch-controls .play-toggle {
  width: 60px;
  min-width: 60px;
  height: 60px;
  font-size: 24px;
}

.watch-faces {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.face {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, .8);
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
  font-weight: 950;
}

.partner-face {
  background: linear-gradient(135deg, #56c7ff, #ff7ac1);
}

.timer-ring {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin: 16px auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #fff 52%, transparent 54%),
    conic-gradient(#ff4da6, #7b5cff, #56c7ff, #ff4da6);
  font-size: 32px;
  font-weight: 950;
}

.proposal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.proposal-actions button:first-child {
  background: #f0eaf2;
  color: #211924;
}

.proposal-actions button:last-child {
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
}

.toast {
  position: fixed;
  left: 50%;
  top: max(14px, env(safe-area-inset-top));
  z-index: 50;
  width: min(390px, calc(100% - 24px));
  transform: translateX(-50%) translateY(-130%);
  padding: 16px 18px;
  border-radius: 23px;
  background: rgba(255, 248, 252, .94);
  color: #1d1721;
  box-shadow: var(--shadow);
  transition: transform .35s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 760px) {
  .main-screen {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    padding: 18px 18px 118px;
  }

  .hero-card {
    border-radius: 38px;
    padding-bottom: 28px;
  }

  .love-note {
    position: static;
    margin-top: 20px;
  }

  .content-sheet {
    margin: 0 0 0 16px;
    border-radius: 40px;
    min-height: calc(100dvh - 140px);
  }
}

/* Netflix x PS5 direction */
body {
  background:
    radial-gradient(circle at 15% -10%, rgba(255, 55, 142, .34), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(72, 171, 255, .24), transparent 28rem),
    radial-gradient(circle at 50% 100%, rgba(123, 92, 255, .28), transparent 34rem),
    linear-gradient(145deg, #07050a 0%, #120812 42%, #050710 100%);
}

.app-shell {
  width: min(100%, 460px);
}

.hero-card {
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 36%),
    radial-gradient(circle at 18% 8%, rgba(255, 65, 151, .62), transparent 15rem),
    radial-gradient(circle at 88% 20%, rgba(76, 196, 255, .34), transparent 14rem),
    linear-gradient(145deg, #131524, #09070d 64%, #1f0b1d);
}

.cinema-promise {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
    rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 18px 46px rgba(0, 0, 0, .26);
  backdrop-filter: blur(22px);
}

.cinema-promise span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .62);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}

.cinema-promise b {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.content-sheet {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(248, 242, 249, .96));
}

.quick-card,
.identity-card,
.big-tile,
.small-tile,
.media-card {
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.quick-card:active,
.identity-card:active,
.media-card:active,
button:active {
  transform: scale(.97);
  filter: brightness(1.08);
}

.media-grid {
  display: grid;
  gap: 14px;
}

.media-card {
  min-height: 205px;
  border-radius: 32px;
  background: linear-gradient(145deg, #14131e, #08070c);
  color: white;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 64px rgba(12, 7, 14, .22);
}

.media-card p {
  color: rgba(255, 255, 255, .72);
}

.media-card button {
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
}

.session-window {
  width: 100dvw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border-radius: 0;
  background: #020204;
}

.session-window::backdrop {
  background: #000;
}

.session-window header {
  position: absolute;
  top: max(10px, env(safe-area-inset-top));
  left: 10px;
  right: 10px;
  z-index: 8;
  border-radius: 22px;
  background: rgba(8, 8, 12, .46);
  backdrop-filter: blur(22px);
}

.session-window footer {
  position: absolute;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 8;
  width: min(420px, calc(100% - 24px));
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(8, 8, 12, .52);
  backdrop-filter: blur(22px);
}

.watch-stage {
  width: 100%;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 25% 10%, rgba(255, 77, 166, .18), transparent 20rem),
    radial-gradient(circle at 75% 85%, rgba(86, 199, 255, .13), transparent 22rem),
    #000;
}

.watch-stage video {
  width: 100%;
  height: 100dvh;
  max-height: none;
  object-fit: contain;
}

.watch-faces {
  right: 14px;
  top: max(92px, calc(env(safe-area-inset-top) + 76px));
  bottom: auto;
  z-index: 9;
  flex-direction: column;
}

.face {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .34);
}

.cinema-chat-overlay {
  position: absolute;
  left: 12px;
  bottom: max(104px, calc(env(safe-area-inset-bottom) + 96px));
  z-index: 8;
  width: min(370px, calc(100% - 94px));
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.cinema-chat-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cinema-chat-box {
  max-height: 152px;
  overflow: auto;
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(8, 8, 12, .46);
  backdrop-filter: blur(22px);
}

.cinema-chat-box .message {
  color: white;
  background: rgba(255, 255, 255, .14);
}

.cinema-chat-input {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
}

.cinema-chat-input input {
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: white;
  backdrop-filter: blur(18px);
}

.cinema-chat-input button {
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4da6, #7b5cff);
  font-size: 21px;
}

.love-modal {
  width: min(420px, calc(100% - 28px));
  padding: 0;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 77, 166, .42), transparent 16rem),
    radial-gradient(circle at 85% 20%, rgba(86, 199, 255, .28), transparent 14rem),
    rgba(14, 10, 18, .92);
  color: white;
  box-shadow: var(--shadow);
}

.love-modal::backdrop {
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(12px);
}

.love-modal-step {
  display: none;
  min-height: 420px;
  padding: 34px 24px 26px;
  text-align: center;
  align-content: center;
}

.love-modal-step.active {
  display: grid;
}

.love-modal-orb {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 20%, #fff, rgba(255, 255, 255, .22) 28%, transparent 30%),
    linear-gradient(135deg, #ff4da6, #7b5cff 72%, #56c7ff);
  font-size: 62px;
  box-shadow: 0 25px 70px rgba(255, 77, 166, .34);
  animation: floaty 3s ease-in-out infinite;
}

.love-modal-orb.sparkle {
  font-size: 54px;
}

.love-modal h2 {
  margin: 0 0 26px;
  font-size: clamp(32px, 9vw, 52px);
  line-height: .95;
  letter-spacing: 0;
}

.love-modal button {
  min-height: 58px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff4da6, #7b5cff 62%, #56c7ff);
  color: white;
  font-weight: 950;
  font-size: 18px;
}

@media (min-width: 900px) {
  .app-shell {
    width: min(100%, 1180px);
  }

  .main-screen {
    grid-template-columns: 390px 1fr;
    padding: 22px 22px 118px;
  }

  .hero-card {
    border-radius: 42px;
    min-height: calc(100dvh - 150px);
  }

  .content-sheet {
    margin-left: 18px;
    border-radius: 42px;
    background: rgba(255, 248, 252, .96);
  }

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

  .watch-stage video {
    object-fit: contain;
  }
}
