:root {
  color-scheme: dark;
  --bg: #070a16;
  --surface: rgba(16, 20, 38, 0.78);
  --surface-strong: rgba(20, 24, 45, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f8ff;
  --muted: rgba(232, 235, 255, 0.62);
  --pink: #ff2d95;
  --purple: #8a2bff;
  --blue: #176bff;
  --cyan: #00e5ff;
  --gradient: linear-gradient(135deg, var(--pink), var(--purple) 48%, var(--blue));
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -10%, rgba(79, 59, 198, 0.24), transparent 34%),
    linear-gradient(180deg, #080b19 0%, var(--bg) 42%, #050711 100%);
  color: var(--text);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.aurora {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  pointer-events: none;
}

.aurora-pink {
  top: 120px;
  left: -260px;
  background: var(--pink);
}

.aurora-blue {
  top: 44%;
  right: -280px;
  background: var(--blue);
}

.aurora-cyan {
  bottom: -260px;
  left: 26%;
  background: var(--cyan);
}

.section-shell,
.site-header {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.12), rgba(138, 43, 255, 0.18));
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.12);
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--cyan);
}

.header-action,
.ghost-button,
.text-button {
  border: 0;
  color: var(--text);
  cursor: pointer;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.pulse-dot,
.stage-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42ff9b;
  box-shadow: 0 0 12px #42ff9b;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  min-height: 640px;
  padding-block: 72px 56px;
  gap: 80px;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(60px, 7.8vw, 108px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 em {
  display: inline-block;
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-style: normal;
  text-shadow: 0 24px 70px rgba(138, 43, 255, 0.22);
}

.hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.primary-button {
  gap: 28px;
  padding: 0 12px 0 24px;
  border: 0;
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(255, 45, 149, 0.28);
  cursor: pointer;
}

.button-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 17px;
}

.ghost-button {
  padding: 0 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
}

.hero-proof div {
  display: grid;
  gap: 4px;
}

.hero-proof strong {
  font-size: 24px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
}

.hero-proof i {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -3;
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 255, 0.34), rgba(23, 107, 255, 0.1) 44%, transparent 70%);
  filter: blur(4px);
  content: "";
}

.visual-grid {
  position: absolute;
  z-index: -2;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black 40%, transparent 72%);
  transform: perspective(600px) rotateX(62deg) translateY(120px);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 410px;
  height: 410px;
  animation: spin 18s linear infinite;
}

.orbit-two {
  width: 320px;
  height: 470px;
  border-color: rgba(255, 45, 149, 0.16);
  transform: rotate(36deg);
  animation: spinReverse 22s linear infinite;
}

.stage-card {
  position: relative;
  display: grid;
  width: 300px;
  height: 360px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 36%),
    rgba(12, 15, 30, 0.76);
  box-shadow: var(--shadow), inset 0 0 60px rgba(0, 229, 255, 0.05);
  backdrop-filter: blur(28px);
  transform: rotate(-4deg);
}

.stage-card::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  content: "";
}

.stage-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.24));
}

.stage-card p {
  margin: 16px 0 2px;
  font-size: 28px;
  font-weight: 950;
}

.stage-card small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.stage-status {
  position: absolute;
  top: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(11, 14, 28, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.chip-one {
  top: 58px;
  right: 0;
}

.chip-two {
  bottom: 78px;
  left: 0;
}

.chip-three {
  right: 12px;
  bottom: 28px;
}

.quick-section {
  padding-bottom: 76px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 132px;
  align-items: center;
  gap: 14px;
  padding: 26px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card:hover {
  z-index: 2;
  background: linear-gradient(140deg, rgba(255, 45, 149, 0.13), rgba(23, 107, 255, 0.08));
  transform: translateY(-3px);
}

.quick-card > span:nth-child(2) {
  display: grid;
  gap: 6px;
}

.quick-card strong {
  font-size: 18px;
  font-weight: 900;
}

.quick-card small {
  color: var(--muted);
  font-size: 12px;
}

.quick-card b {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.14);
  font-size: 11px;
}

.quick-icon,
.service-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 18px;
  background: rgba(0, 229, 255, 0.07);
}

.quick-icon {
  width: 54px;
  height: 54px;
}

.quick-icon img,
.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.content-section {
  padding-block: 78px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-heading h2,
.service-copy h2,
.download-card h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  letter-spacing: -0.045em;
}

.text-button {
  padding: 10px 0;
  background: transparent;
  color: var(--muted);
}

.text-button span {
  margin-left: 8px;
  color: var(--cyan);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.room-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease;
}

.room-card:hover {
  border-color: rgba(0, 229, 255, 0.32);
  transform: translateY(-7px);
}

.room-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.room-card:hover .room-image {
  transform: scale(1.045);
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 18, 0.05), rgba(6, 8, 18, 0.28) 40%, rgba(6, 8, 18, 0.98) 100%);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(8, 10, 24, 0.66);
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.room-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
}

.room-content h3 {
  margin: 0;
  font-size: 22px;
}

.room-meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.room-tags,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.room-tags {
  margin-top: 16px;
}

.room-tags span,
.service-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.room-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.room-price strong {
  color: var(--cyan);
  font-size: 25px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 20px;
  padding-block: 72px;
}

.glass-panel,
.promo-panel {
  min-height: 300px;
  border-radius: 34px;
}

.glass-panel {
  display: grid;
  grid-template-columns: 84px 1fr 52px;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 45, 149, 0.12), rgba(23, 107, 255, 0.11)),
    rgba(15, 19, 37, 0.84);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 84px;
  height: 84px;
  border-radius: 26px;
}

.service-icon img {
  width: 48px;
  height: 48px;
}

.service-copy p {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.7;
}

.round-action {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.promo-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 229, 255, 0.34), transparent 36%),
    var(--gradient);
  box-shadow: 0 24px 70px rgba(138, 43, 255, 0.28);
}

.promo-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.promo-panel strong {
  margin-top: 18px;
  font-size: 38px;
  line-height: 1.05;
}

.promo-panel p {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

.promo-panel button {
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: #5b1cc8;
  font-weight: 900;
  cursor: pointer;
}

.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.party-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 194px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.party-card:hover {
  border-color: rgba(255, 45, 149, 0.32);
  transform: translateY(-5px);
}

.party-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.party-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
}

.party-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.party-type {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
}

.party-seat {
  color: #42ff9b;
  font-size: 10px;
}

.party-content h3 {
  margin: 13px 0 8px;
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.party-content p {
  margin: 3px 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.party-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
}

.party-footer strong {
  color: var(--pink);
  font-size: 20px;
}

.download-section {
  padding-block: 86px 110px;
}

.download-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 229, 255, 0.18), transparent 26%),
    radial-gradient(circle at 12% 100%, rgba(255, 45, 149, 0.22), transparent 36%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.download-card p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.download-card .primary-button {
  flex: 0 0 auto;
  color: white;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand.compact .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.brand.compact .brand-mark img {
  width: 30px;
  height: 30px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.mobile-tabbar {
  display: none;
}

.miniapp-dialog {
  width: min(420px, calc(100% - 32px));
  padding: 40px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(138, 43, 255, 0.25), transparent 42%),
    #101426;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.56);
  color: white;
  text-align: center;
}

.miniapp-dialog::backdrop {
  background: rgba(3, 5, 13, 0.76);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
}

.dialog-logo {
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 30px;
  background: rgba(0, 229, 255, 0.06);
}

.dialog-logo img {
  width: 72px;
  height: 72px;
}

.miniapp-dialog h2 {
  margin: 10px 0;
}

.miniapp-dialog p {
  color: var(--muted);
  line-height: 1.7;
}

.dialog-tip {
  margin: 22px 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

.dialog-tip span {
  margin-right: 6px;
  color: #42ff9b;
  font-weight: 900;
}

.dialog-confirm {
  width: 100%;
  color: white;
}

.toast {
  position: fixed;
  z-index: 100;
  bottom: 34px;
  left: 50%;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 15, 30, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  color: white;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(36deg);
  }
  to {
    transform: rotate(-324deg);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 400px;
    gap: 38px;
  }

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

  .party-grid {
    grid-template-columns: 1fr 1fr;
  }

  .party-card:last-child {
    grid-column: 1 / -1;
  }

  .quick-card {
    grid-template-columns: 48px 1fr;
    padding: 20px 16px;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .section-shell,
  .site-header {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .brand-copy small,
  .desktop-nav {
    display: none;
  }

  .header-action {
    padding: 9px 13px;
    font-size: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-mark img {
    width: 32px;
    height: 32px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 48px 24px;
    gap: 20px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(58px, 18vw, 84px);
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions > * {
    flex: 1;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero-proof {
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
  }

  .hero-visual {
    min-height: 420px;
    transform: scale(0.9);
  }

  .quick-section {
    padding-bottom: 36px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .quick-card {
    min-height: 116px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .quick-card:nth-child(2n) {
    border-right: 0;
  }

  .quick-card:nth-child(n + 3) {
    border-bottom: 0;
  }

  .content-section {
    padding-block: 52px;
  }

  .section-heading {
    align-items: center;
    margin-bottom: 22px;
  }

  .section-heading h2,
  .service-copy h2,
  .download-card h2 {
    font-size: 34px;
  }

  .text-button {
    font-size: 12px;
  }

  .room-grid,
  .party-grid {
    display: flex;
    width: calc(100vw - 16px);
    overflow-x: auto;
    gap: 14px;
    padding-right: 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .room-grid::-webkit-scrollbar,
  .party-grid::-webkit-scrollbar {
    display: none;
  }

  .room-card {
    width: min(78vw, 330px);
    min-width: min(78vw, 330px);
    min-height: 390px;
    scroll-snap-align: start;
  }

  .service-layout {
    grid-template-columns: 1fr;
    padding-block: 50px;
  }

  .glass-panel {
    grid-template-columns: 66px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 22px;
  }

  .service-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
  }

  .round-action {
    display: none;
  }

  .service-tags {
    grid-column: 1 / -1;
  }

  .promo-panel {
    min-height: 260px;
  }

  .party-card,
  .party-card:last-child {
    grid-column: auto;
    width: min(86vw, 370px);
    min-width: min(86vw, 370px);
    scroll-snap-align: start;
  }

  .download-section {
    padding-block: 54px 70px;
  }

  .download-card {
    display: grid;
    padding: 34px 26px;
  }

  .download-card .primary-button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding-bottom: 28px;
    text-align: center;
  }

  .mobile-tabbar {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 66px;
    padding: 8px 6px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background: rgba(8, 11, 24, 0.9);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(22px);
  }

  .mobile-tabbar a,
  .mobile-tabbar button {
    display: grid;
    place-items: center;
    gap: 2px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.44);
    font-size: 10px;
  }

  .mobile-tabbar img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.72;
  }

  .mobile-tabbar .active {
    color: var(--pink);
  }

  .mobile-tabbar .active img {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 45, 149, 0.42));
  }

  .toast {
    bottom: calc(90px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
    transform: scale(0.78);
    margin: -34px -40px;
  }

  .quick-card {
    grid-template-columns: 44px 1fr;
    padding: 16px 13px;
  }

  .quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .quick-icon img {
    width: 29px;
    height: 29px;
  }

  .quick-card strong {
    font-size: 15px;
  }

  .room-card {
    min-height: 360px;
  }

  .party-card {
    grid-template-columns: 116px 1fr;
  }
}

@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;
  }
}
