:root {
  --ink: #11131a;
  --muted: #777b86;
  --soft-muted: #a4a7af;
  --surface: #ffffff;
  --canvas: #f4f5f8;
  --coral: #ff5b32;
  --orange: #ff7a1a;
  --pink: #ff3d77;
  --peach: #fff0e7;
  --cyan: #28c9ec;
  --line: #ececf1;
  --radius: 22px;
  --shadow: 0 10px 35px rgba(31, 38, 53, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f5f6f8;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 225, 186, 0.46), transparent 28rem),
    radial-gradient(circle at 92% 1%, rgba(255, 209, 239, 0.46), transparent 26rem),
    var(--canvas);
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 91, 50, 0.25);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  background: rgba(248, 249, 251, 0.92);
  box-shadow: 0 0 90px rgba(50, 56, 69, 0.08);
}

.brand-bar {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 18px max(22px, env(safe-area-inset-left));
  background: rgba(255, 250, 248, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.brand-logo {
  width: 88px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

[data-active-page="vip"] .city-pill,
[data-active-page="mine"] .city-pill {
  visibility: hidden;
}

.city-pill,
.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.city-pill {
  justify-self: start;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 800;
}

.brand-actions {
  justify-self: end;
  display: flex;
  gap: 7px;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  font-size: 23px;
}

.icon-button:hover {
  background: rgba(20, 22, 30, 0.05);
}

#app-main {
  padding: 0 24px 126px;
}

.page {
  display: none;
  animation: page-in 0.28s ease both;
}

.page.is-active {
  display: block;
}

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

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 2px 0 24px;
}

.search-row.compact {
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.search-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-width: 0;
  height: 58px;
  padding: 0 16px;
  background: var(--surface);
  border: 3px solid #171c2a;
  border-radius: 20px;
}

.search-box > i {
  margin-right: 10px;
  font-size: 24px;
}

.search-box input {
  min-width: 0;
  height: 100%;
  padding: 0;
  color: #4b4d55;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.search-box input::placeholder {
  color: #787b84;
}

.scan-inside {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #777a82;
  border: 0;
  background: transparent;
  font-size: 26px;
}

.search-submit {
  min-width: 74px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ff3c70);
  border: 0;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(255, 72, 62, 0.2);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(74px, 1fr));
  gap: 16px 8px;
  padding: 4px 2px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-grid::-webkit-scrollbar,
.horizontal-list::-webkit-scrollbar,
.discovery-categories::-webkit-scrollbar {
  display: none;
}

.category-item {
  position: relative;
  display: grid;
  min-width: 82px;
  justify-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.category-item > span:last-of-type {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
}

.category-item em {
  position: absolute;
  top: -6px;
  right: 0;
  padding: 3px 8px;
  color: #3a3218;
  background: #fff56a;
  border-radius: 10px;
  font-size: 10px;
  font-style: normal;
}

.category-item.is-selected::after {
  position: absolute;
  bottom: -9px;
  width: 20px;
  height: 4px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
}

.category-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  font-size: 30px;
}

.category-icon.coral {
  color: #ff552e;
  background: #fff0e5;
}

.category-icon.violet {
  color: #a252e3;
  background: #f3e4ff;
}

.category-icon.rose {
  color: #ed4671;
  background: #ffe7ef;
}

.category-icon.green {
  color: #57b958;
  background: #eaf8e9;
}

.category-icon.blue {
  color: #3f98ea;
  background: #e3f2ff;
}

.category-icon.pink {
  color: #ef53a1;
  background: #ffe6f5;
}

.category-icon.orange {
  color: #ff781b;
  background: #fff0dc;
}

.category-icon.cyan {
  color: #2dadd2;
  background: #e1f8ff;
}

.category-icon.purple {
  color: #bc5ee5;
  background: #f7e9ff;
}

.category-icon.vermilion {
  color: #ed6034;
  background: #fff0e8;
}

.promo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.promo-card {
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-card.hot {
  background: linear-gradient(135deg, #fffaf5, #fff0f3);
}

.promo-card.deal {
  background: linear-gradient(135deg, #fff1fa, #fff7ef);
}

.promo-heading,
.section-heading {
  display: flex;
  align-items: center;
}

.promo-heading {
  gap: 10px;
}

.promo-heading strong {
  font-size: 22px;
}

.promo-heading span {
  color: var(--muted);
  font-size: 14px;
}

.promo-heading i {
  margin-left: auto;
  font-size: 20px;
}

.promo-event {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.promo-event img {
  width: 74px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}

.promo-event h3 {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promo-event p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.promo-event p b {
  color: var(--ink);
  font-size: 16px;
}

.promo-event > button {
  align-self: end;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  background: var(--coral);
  border: 0;
  border-radius: 12px;
  font-weight: 900;
}

.content-card {
  margin: 16px 0;
  padding: 22px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.section-heading h2 small {
  color: var(--soft-muted);
  font-size: 14px;
  font-weight: 500;
}

.section-heading button {
  padding: 6px 0;
  color: #555861;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

.heading-dot {
  width: 17px;
  height: 17px;
  background: #ffb74e;
  border: 4px solid #ffe0a9;
  border-radius: 50%;
}

.heading-dot.yellow {
  background: #ffcf3e;
  border-color: #fff1a7;
}

.horizontal-list {
  display: grid;
  grid-auto-columns: minmax(148px, 18%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
}

.event-card {
  min-width: 0;
  scroll-snap-align: start;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
  background: #eee;
  border-radius: 14px;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-wrap::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(transparent, rgba(7, 8, 12, 0.72));
}

.poster-wrap span,
.poster-wrap b {
  position: absolute;
  z-index: 1;
  color: #fff;
}

.poster-wrap span {
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  background: rgba(10, 12, 18, 0.76);
  border-radius: 6px;
  font-size: 11px;
}

.poster-wrap b {
  right: 8px;
  bottom: 8px;
  font-size: 17px;
}

.event-card h3 {
  min-height: 44px;
  margin: 10px 0 5px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.45;
}

.event-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.event-card > strong {
  color: var(--coral);
  font-size: 19px;
}

.event-card > strong small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.soft-button {
  width: 86%;
  padding: 7px 10px;
  color: var(--coral);
  background: #ffe8df;
  border: 0;
  border-radius: 11px;
}

.utility-grid,
.fan-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0;
}

.utility-grid article,
.fan-strip article {
  min-width: 0;
  padding: 18px;
  background: linear-gradient(145deg, #fffdf8, #fff);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.utility-grid article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-grid h2,
.fan-strip h2 {
  margin: 0 0 10px;
  font-size: 19px;
}

.utility-grid strong {
  display: block;
  color: #f05b30;
  font-size: 16px;
}

.utility-grid p,
.fan-strip p {
  margin: 7px 0;
  color: var(--muted);
  font-size: 13px;
}

.utility-grid button {
  margin-top: 4px;
  padding: 7px 16px;
  color: var(--coral);
  background: var(--peach);
  border: 0;
  border-radius: 999px;
}

.hero-banner {
  position: relative;
  min-height: 206px;
  margin: 18px 0;
  overflow: hidden;
  background: #17133b;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(28, 27, 69, 0.2);
}

.hero-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 20%, rgba(12, 13, 48, 0.25) 50%, rgba(12, 13, 48, 0.7));
}

.hero-banner > div {
  position: relative;
  z-index: 1;
  width: 46%;
  margin-left: auto;
  padding: 36px 28px;
  color: #fff;
}

.hero-banner span {
  color: #c6c0ff;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.hero-banner h2 {
  margin: 7px 0;
  font-size: 28px;
}

.hero-banner p {
  margin: 0 0 18px;
  color: #e3e1ff;
  font-size: 13px;
}

.hero-banner button,
.vip-merch button {
  padding: 9px 18px;
  color: #211d52;
  background: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
}

.coral-title h2 {
  color: var(--coral);
}

.bottom-nav {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 16px;
  display: grid;
  width: min(calc(100% - 28px), 740px);
  grid-template-columns: repeat(5, 1fr);
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 231, 235, 0.9);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(34, 38, 51, 0.17);
  backdrop-filter: blur(24px);
}

.nav-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 5px 2px;
  color: #191c24;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-item i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  font-size: 27px;
  transition: 0.2s ease;
}

.nav-item span {
  font-size: 13px;
}

.nav-item em {
  position: absolute;
  top: 3px;
  right: 28%;
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
}

.nav-item.is-active {
  color: var(--coral);
  font-weight: 700;
}

.nav-item.is-active i {
  color: #fff;
  background: linear-gradient(145deg, #ff841a, #ff426f);
  box-shadow: 0 8px 20px rgba(255, 80, 56, 0.24);
}

.demo-note {
  position: fixed;
  z-index: 48;
  right: 0;
  top: 52%;
  display: flex;
  width: 32px;
  height: 164px;
  align-items: center;
  justify-content: center;
  color: #7a6f69;
  background: rgba(255, 248, 243, 0.95);
  border: 1px solid #f1ddd1;
  border-right: 0;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 8px 24px rgba(76, 59, 50, 0.08);
}

.demo-note i {
  display: none;
}

.demo-note span {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.maintenance-toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 102px;
  width: min(calc(100% - 32px), 520px);
  padding: 13px 18px;
  color: #fff;
  background: rgba(29, 31, 39, 0.94);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(29, 31, 39, 0.24);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.maintenance-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Cinema */
.cinema-top-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
}

.cinema-coupon,
.brand-card {
  min-height: 270px;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cinema-coupon {
  position: relative;
}

.cinema-coupon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-coupon > div {
  position: absolute;
  inset: 0;
  display: grid;
  width: 58%;
  align-content: center;
  padding: 26px;
  background: linear-gradient(90deg, rgba(255, 238, 225, 0.96), rgba(255, 238, 225, 0.22));
}

.cinema-coupon h2 {
  margin: 0;
  color: #f25532;
  font-size: 30px;
}

.cinema-coupon p {
  margin: 6px 0 20px;
  color: #e06747;
}

.cinema-coupon button {
  width: fit-content;
  padding: 10px 28px;
  color: #fff;
  background: var(--coral);
  border: 0;
  border-radius: 999px;
}

.brand-card {
  padding: 22px;
  background: linear-gradient(135deg, #fff7fd, #fff);
}

.mini-brand {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.mini-brand > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #171717;
  background: #ffd914;
  border-radius: 14px;
  font-size: 26px;
  font-weight: 900;
}

.mini-brand.black > span {
  color: #fff;
  background: #111;
}

.mini-brand b {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.mini-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-brand > strong {
  color: #7b253e;
  font-size: 20px;
}

.mini-brand > strong small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.tab-row {
  display: flex;
  gap: 30px;
  margin-top: 28px;
  border-bottom: 1px solid var(--line);
}

.tab-row button,
.feed-tabs button {
  position: relative;
  padding: 11px 0 14px;
  color: #676a73;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 21px;
}

.tab-row button.is-active,
.feed-tabs button.is-active {
  color: var(--ink);
  font-weight: 800;
}

.tab-row button.is-active::after,
.feed-tabs button.is-active::after {
  position: absolute;
  right: 22%;
  bottom: 3px;
  left: 22%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #ffb215, #ff632a);
  border-radius: 999px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px;
  align-items: center;
  padding: 18px 0 8px;
}

.filter-row button {
  padding: 8px 2px;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 700;
}

.filter-row button:last-child {
  justify-self: end;
}

.venue-list {
  display: grid;
  gap: 14px;
  margin: 10px 0;
}

.venue-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 49, 61, 0.04);
}

.venue-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.venue-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.venue-card div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.venue-card div > div span {
  padding: 3px 7px;
  color: #4d9bc4;
  border: 1px solid #cce7f4;
  border-radius: 5px;
  font-size: 11px;
}

.venue-card div > div span:first-child {
  color: #e46644;
  border-color: #f1cfc6;
}

.venue-card > strong {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 21px;
}

.venue-card > strong small {
  font-size: 11px;
}

.location-bar {
  position: sticky;
  bottom: 110px;
  padding: 13px 18px;
  color: #756c68;
  background: rgba(255, 239, 229, 0.93);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

/* VIP */
.vip-page {
  margin: 0 -24px;
  background: #f4f5f7;
}

.vip-hero {
  min-height: 330px;
  padding: 40px 56px 74px;
  color: #2f1b14;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 201, 155, 0.8), transparent 40%),
    linear-gradient(145deg, #2a1611 0 32%, #ffc69f 32%, #ffad83);
}

.vip-hero > p {
  margin: 0 0 38px;
  color: #fff;
  text-align: center;
  font-size: 24px;
}

.vip-hero h1 {
  margin: 0;
  font-size: 34px;
}

.vip-hero > span {
  display: block;
  margin-top: 10px;
  color: #6d4032;
}

.vip-points {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 46px;
}

.vip-points > strong {
  font-size: 34px;
}

.vip-points small {
  margin-left: 5px;
  font-size: 14px;
}

.vip-points button {
  padding: 13px 24px;
  color: #4b261c;
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: 14px;
  font-weight: 800;
}

.progress-card {
  margin: -48px 24px 18px;
  padding: 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.progress-card > div {
  height: 7px;
  overflow: hidden;
  background: #f7e7df;
  border-radius: 999px;
}

.progress-card > div span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #c56d39, #d77b50);
  border-radius: inherit;
}

.progress-card p {
  margin: 13px 0 0;
  font-size: 15px;
}

.progress-card b {
  color: #b55e39;
}

.benefit-section,
.vip-flash,
.vip-merch,
.vip-offers,
.priority-card {
  margin-right: 24px;
  margin-left: 24px;
}

.benefit-section {
  padding: 12px 0;
}

.benefit-section > h2 {
  font-size: 23px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.benefit-grid button {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
}

.benefit-grid i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #b9663f;
  background: #ffe8d6;
  border-radius: 20px;
  font-size: 28px;
}

.benefit-grid span {
  color: #5f6067;
  white-space: nowrap;
  font-size: 13px;
}

.vip-flash {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 16px;
}

.vip-flash i {
  color: #c67b45;
  font-size: 24px;
}

.vip-flash span {
  flex: 1;
  font-size: 15px;
}

.vip-flash button {
  padding: 9px 20px;
  color: #7b3a23;
  background: #ffe4d0;
  border: 0;
  border-radius: 12px;
}

.vip-merch {
  position: relative;
  min-height: 190px;
  margin-top: 18px;
  overflow: hidden;
  background: #c7edff;
  border-radius: 24px;
}

.vip-merch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.vip-merch div {
  position: relative;
  width: 52%;
  margin-left: auto;
  padding: 34px 30px;
}

.vip-merch h2 {
  margin: 0;
  font-size: 24px;
}

.vip-merch p {
  color: #70808c;
}

.vip-offers {
  margin-top: 18px;
}

.offer-card {
  min-width: 145px;
}

.offer-card img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  border-radius: 14px;
}

.offer-card h3 {
  min-height: 46px;
  margin: 8px 0;
  font-size: 14px;
}

.offer-card > strong {
  font-size: 20px;
}

.offer-card > strong small {
  margin-left: 3px;
  font-size: 11px;
}

.offer-card > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.main-offer {
  display: grid;
  min-height: 220px;
  align-content: center;
  justify-items: center;
  background: linear-gradient(145deg, #fff5e8, #ffd0b2);
  border-radius: 16px;
}

.main-offer > span {
  padding: 5px 12px;
  background: #fff4ea;
  border-radius: 8px;
}

.main-offer > strong {
  margin: 18px 0;
  font-size: 31px;
}

.priority-card {
  height: 100px;
}

/* Discover */
.discovery-categories {
  display: grid;
  grid-auto-columns: 100px;
  grid-auto-flow: column;
  gap: 10px;
  padding: 6px 0 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.discovery-categories button {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px;
  background: transparent;
  border: 0;
}

.discovery-categories i {
  font-size: 34px;
}

.discovery-categories span {
  font-weight: 700;
}

.discover-deals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.discover-deals > article {
  min-width: 0;
  padding: 18px;
  background: linear-gradient(140deg, #fff1f9, #fff);
  border-radius: var(--radius);
}

.deal-posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.deal-posters img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 14px;
}

.coupon-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.coupon-duo > div {
  display: grid;
  min-height: 165px;
  align-content: space-between;
  justify-items: center;
  padding: 14px 8px;
  background: linear-gradient(#fff9f6 63%, #ff5b22 63%);
  border-radius: 14px;
}

.coupon-duo b {
  color: #fff;
  font-size: 23px;
}

.coupon-duo p {
  margin: 0;
  color: #8e6b60;
  text-decoration: line-through;
}

.fan-strip {
  grid-template-columns: 1fr 1fr;
}

.feed-tabs {
  display: flex;
  gap: 26px;
  margin: 24px 0 18px;
  overflow-x: auto;
}

.feed-tabs button {
  flex: 0 0 auto;
  font-size: 17px;
}

.masonry-feed {
  columns: 2;
  column-gap: 14px;
}

.feed-card {
  break-inside: avoid;
  margin: 0 0 14px;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feed-image {
  position: relative;
  height: 340px;
}

.feed-image.tall {
  height: 440px;
}

.feed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-image > i {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  font-size: 28px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

.feed-card h2 {
  margin: 14px 16px 7px;
  font-size: 18px;
}

.feed-card p {
  margin: 0 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

.avatar-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  vertical-align: -2px;
  border-radius: 50%;
}

.coral-dot {
  background: #ff7453;
}

.violet-dot {
  background: #9f79e8;
}

.blue-dot {
  background: #4aaee8;
}

.quote-card {
  padding: 26px 8px;
  color: #fff;
  background: linear-gradient(145deg, #4c357c, #8d5d89);
}

.quote-card > i {
  margin-left: 16px;
  font-size: 32px;
}

.quote-card h2 {
  line-height: 1.5;
}

.quote-card p {
  color: #e5d9ef;
}

/* Mine */
.mine-page {
  margin: 0 -24px;
  padding: 10px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 227, 216, 0.94), rgba(247, 248, 250, 0.96) 530px),
    #f5f6f8;
}

.profile-header {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 30px 8px 24px;
}

.profile-header > img {
  width: 94px;
  height: 94px;
  object-fit: cover;
  border-radius: 24px;
}

.profile-header h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.profile-header p {
  margin: 0;
  font-size: 15px;
}

.profile-header p span {
  display: inline-block;
  height: 13px;
  margin: 0 10px;
  border-left: 1px solid #c6aaa0;
}

.profile-card,
.quick-actions,
.ticket-wallet {
  margin-bottom: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.profile-stats button {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 5px 12px 20px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
}

.profile-stats button:last-child {
  border: 0;
}

.profile-stats strong {
  font-size: 23px;
}

.profile-stats small {
  font-size: 13px;
}

.profile-stats span {
  font-size: 13px;
}

.upgrade-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  color: #82412c;
  background: linear-gradient(90deg, #fff5e9, #ffead7);
  border-radius: 14px;
}

.upgrade-strip strong {
  font-size: 20px;
}

.upgrade-strip span {
  color: #986958;
  font-size: 13px;
}

.upgrade-strip button {
  padding: 7px 13px;
  color: #fff;
  background: #9b4c2e;
  border: 0;
  border-radius: 999px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-actions button {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 8px;
  background: transparent;
  border: 0;
}

.quick-actions i {
  color: var(--orange);
  font-size: 35px;
}

.quick-actions span {
  font-weight: 700;
}

.ticket-wallet {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-wallet h2 {
  margin: 0;
  font-size: 22px;
}

.ticket-wallet small {
  color: var(--soft-muted);
  font-size: 14px;
  font-weight: 500;
}

.ticket-wallet button {
  background: transparent;
  border: 0;
}

.quick-actions.secondary i {
  color: #151821;
}

.coupon-banner {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
}

.profile-tabs {
  margin-bottom: 16px;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.recommend-grid article {
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
}

.recommend-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.recommend-grid h2 {
  margin: 14px 16px 6px;
  font-size: 17px;
}

.recommend-grid p {
  margin: 0 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-shell {
    box-shadow: none;
  }

  .brand-bar {
    min-height: 68px;
    padding: 14px 14px;
  }

  .brand-logo {
    width: 76px;
    height: 34px;
  }

  .city-pill {
    font-size: 17px;
  }

  .brand-actions .icon-button:first-child {
    display: none;
  }

  #app-main {
    padding: 0 12px 112px;
  }

  .search-row {
    gap: 7px;
    margin-bottom: 18px;
  }

  .search-box {
    height: 50px;
    padding: 0 11px;
    border-width: 2px;
    border-radius: 16px;
  }

  .search-box > i {
    display: none;
  }

  .search-box input {
    font-size: 15px;
  }

  .search-submit {
    min-width: 66px;
    padding: 0 15px;
    border-radius: 14px;
    font-size: 14px;
  }

  .category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px 3px;
    overflow-x: visible;
  }

  .category-item {
    min-width: 72px;
  }

  .category-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 27px;
  }

  .category-item > span:last-of-type {
    font-size: 12px;
  }

  .promo-pair {
    gap: 8px;
  }

  .promo-card {
    padding: 10px;
    border-radius: 16px;
  }

  .promo-heading strong {
    font-size: 14px;
  }

  .promo-heading span {
    display: none;
  }

  .promo-event {
    grid-template-columns: 54px 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .promo-event img {
    width: 54px;
    height: 68px;
    border-radius: 9px;
  }

  .promo-event h3 {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .promo-event p,
  .promo-event p b {
    font-size: 11px;
  }

  .promo-event > button {
    display: none;
  }

  .content-card {
    margin: 12px 0;
    padding: 17px 14px;
    border-radius: 18px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .section-heading button {
    font-size: 14px;
  }

  .horizontal-list {
    grid-auto-columns: 24%;
    gap: 10px;
  }

  .event-card h3 {
    min-height: 38px;
    font-size: 13px;
  }

  .utility-grid {
    gap: 8px;
  }

  .utility-grid article {
    padding: 10px;
    border-radius: 16px;
  }

  .utility-grid h2 {
    font-size: 15px;
  }

  .utility-grid p,
  .utility-grid strong {
    font-size: 11px;
  }

  .utility-grid button {
    padding: 5px 10px;
    font-size: 11px;
  }

  .hero-banner {
    min-height: 150px;
    border-radius: 18px;
  }

  .hero-banner > div {
    width: 55%;
    padding: 24px 16px;
  }

  .hero-banner h2 {
    font-size: 20px;
  }

  .hero-banner p {
    font-size: 11px;
  }

  .hero-banner button {
    padding: 7px 13px;
    font-size: 11px;
  }

  .bottom-nav {
    bottom: 8px;
    width: calc(100% - 16px);
    padding: 7px 5px max(7px, env(safe-area-inset-bottom));
    border-radius: 20px;
  }

  .nav-item i {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .nav-item span {
    font-size: 11px;
  }

  .demo-note {
    display: none;
  }

  .cinema-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cinema-coupon,
  .brand-card {
    min-height: 205px;
    border-radius: 17px;
  }

  .cinema-coupon > div {
    width: 75%;
    padding: 16px;
  }

  .cinema-coupon h2 {
    font-size: 19px;
  }

  .cinema-coupon p {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .cinema-coupon button {
    padding: 7px 18px;
    font-size: 12px;
  }

  .brand-card {
    padding: 10px;
  }

  .brand-card .section-heading h2 {
    font-size: 18px;
  }

  .mini-brand {
    grid-template-columns: 42px 1fr;
    gap: 8px;
    padding: 8px 0;
  }

  .mini-brand > span {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 19px;
  }

  .mini-brand b {
    font-size: 13px;
  }

  .mini-brand p {
    font-size: 10px;
  }

  .mini-brand > strong {
    display: none;
  }

  .venue-card {
    padding: 17px;
  }

  .venue-card h2 {
    font-size: 17px;
  }

  .venue-card > strong {
    font-size: 14px;
  }

  .vip-page {
    margin: 0 -12px;
  }

  .vip-hero {
    min-height: 170px;
    padding: 12px 24px 32px;
  }

  .vip-hero > p {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .vip-hero h1 {
    font-size: 22px;
  }

  .vip-points {
    margin-top: 6px;
  }

  .vip-points > strong {
    font-size: 24px;
  }

  .vip-points button {
    padding: 10px 14px;
    font-size: 13px;
  }

  .progress-card,
  .benefit-section,
  .vip-flash,
  .vip-merch,
  .vip-offers,
  .priority-card {
    margin-right: 12px;
    margin-left: 12px;
  }

  .progress-card {
    margin-top: -20px;
    padding: 14px 18px;
    font-size: 12px;
  }

  .benefit-grid {
    gap: 4px;
  }

  .benefit-grid i {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 23px;
  }

  .benefit-grid span {
    font-size: 10px;
  }

  .vip-flash {
    padding: 10px 12px;
  }

  .vip-flash span {
    font-size: 12px;
  }

  .vip-flash button {
    padding: 7px 11px;
    font-size: 11px;
  }

  .vip-merch {
    min-height: 155px;
    border-radius: 18px;
  }

  .vip-merch div {
    width: 62%;
    padding: 26px 18px;
  }

  .vip-merch h2 {
    font-size: 18px;
  }

  .vip-offers .horizontal-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }

  .vip-offers .offer-card {
    flex: 0 0 30%;
    min-width: 0;
    overflow: hidden;
  }

  .vip-offers .main-offer {
    flex-basis: 38%;
    min-height: 200px;
    padding: 12px;
  }

  .vip-offers .offer-card img {
    height: 92px;
  }

  .vip-offers .offer-card h3 {
    display: -webkit-box;
    min-height: 40px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .vip-offers .main-offer > strong {
    font-size: 28px;
  }
  .discovery-categories {
    grid-auto-columns: 62px;
    gap: 0;
    padding: 4px 0 10px;
  }

  .discovery-categories i {
    font-size: 28px;
  }

  .discovery-categories span {
    font-size: 11px;
  }

  .discover-deals {
    gap: 8px;
  }

  .discover-deals > article {
    padding: 10px;
    border-radius: 17px;
  }

  .deal-posters img,
  .coupon-duo > div {
    height: 92px;
    min-height: 92px;
  }

  .coupon-duo b {
    font-size: 17px;
  }

  .fan-strip {
    gap: 8px;
  }

  .fan-strip article {
    padding: 10px;
  }

  .fan-strip h2 {
    font-size: 14px;
  }

  .feed-tabs {
    gap: 16px;
    margin: 12px 0;
  }

  .feed-image {
    height: 230px;
  }

  .feed-image.tall {
    height: 310px;
  }

  .feed-card h2 {
    margin: 11px 12px 5px;
    font-size: 15px;
  }

  .feed-card p {
    margin: 0 12px 13px;
    font-size: 11px;
  }

  .mine-page {
    margin: 0 -12px;
    padding: 6px 12px 20px;
  }

  .profile-header {
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    padding: 16px 6px 14px;
  }

  .profile-header > img {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .profile-header h2 {
    font-size: 23px;
  }

  .profile-header p {
    font-size: 12px;
  }

  .profile-card,
  .quick-actions,
  .ticket-wallet {
    padding: 17px 14px;
    border-radius: 18px;
  }

  .profile-stats button {
    padding: 4px 6px 16px;
  }

  .profile-stats strong {
    font-size: 18px;
  }

  .upgrade-strip {
    grid-template-columns: auto 1fr;
    gap: 8px;
    padding: 12px;
  }

  .upgrade-strip span {
    font-size: 10px;
  }

  .upgrade-strip button {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: -32px;
  }

  .quick-actions {
    gap: 3px;
  }

  .quick-actions i {
    font-size: 24px;
  }

  .quick-actions span {
    font-size: 12px;
  }

  .ticket-wallet h2 {
    font-size: 18px;
  }

  .ticket-wallet small {
    display: none;
  }

  .coupon-banner {
    height: 98px;
    border-radius: 17px;
  }

  .recommend-grid {
    gap: 9px;
  }

  .recommend-grid img {
    height: 220px;
  }
}

@media (max-width: 390px) {
  .category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .horizontal-list {
    grid-auto-columns: 26%;
  }

  .filter-row {
    font-size: 11px;
  }

  .filter-row button {
    font-size: 11px;
  }
}

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