:root {
  --bg: #100a10;
  --text: #fff8f1;
  --muted: rgba(255, 248, 241, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --rose: #ff3f68;
  --coral: #ff7658;
  --gold: #f6c56a;
  --green: #35d07f;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #070407;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 63, 104, 0.28), transparent 42%),
    radial-gradient(circle at 0% 20%, rgba(246, 197, 106, 0.18), transparent 32%),
    #070407;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  overflow-x: hidden;
  padding-bottom: 92px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

.app {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 10, 16, 0.18), #100a10 38%),
    #100a10;
  box-shadow: 0 0 90px rgba(255, 63, 104, 0.08);
}

.app::before,
.app::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.app::before {
  top: -120px;
  left: -90px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 63, 104, 0.34), transparent 66%);
  filter: blur(8px);
}

.app::after {
  top: 120px;
  right: -160px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(246, 197, 106, 0.22), transparent 68%);
  filter: blur(4px);
}

.container {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 63, 104, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 8, 14, 0.98), rgba(15, 8, 14, 0.88));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
}

.nav::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(246, 197, 106, 0.45), transparent);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.logo {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(255, 63, 104, 0.28);
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.brand-name {
  overflow: hidden;
  color: #fff;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-sub {
  color: rgba(255, 248, 241, 0.48);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.download-mini {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #211017;
  background: linear-gradient(135deg, #fff4cf, var(--gold) 55%, var(--coral));
  box-shadow: 0 12px 26px rgba(255, 118, 88, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.download-mini::after {
  width: 5px;
  height: 5px;
  margin-left: 7px;
  content: "";
  border-radius: 50%;
  background: #211017;
  opacity: 0.55;
}

.hero {
  position: relative;
  padding: 18px 0 28px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: #1b0c14;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 1px;
  z-index: 1;
  content: "";
  border-radius: 33px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -80px 90px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 80% 18%, rgba(246, 197, 106, 0.36), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.58) 100%);
}

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

.match-float {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 138px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(16, 10, 16, 0.46);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.match-float b {
  display: block;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.06em;
}

.match-float span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 248, 241, 0.66);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
}

.hero-content {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  z-index: 3;
}

.badge {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  max-width: calc(100% - 156px);
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(16, 10, 16, 0.5);
  backdrop-filter: blur(18px);
  color: rgba(255, 248, 241, 0.9);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(53, 208, 127, 0.16);
}

h1 {
  margin-top: 16px;
  font-size: 42px;
  line-height: 1.03;
  letter-spacing: -0.075em;
}

.hero-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.hero-sub strong {
  color: #fff;
  font-weight: 950;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.primary-btn,
.store {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.primary-btn {
  min-height: 54px;
  border-radius: 18px;
  color: #211017;
  background: linear-gradient(135deg, #fff4cf, var(--gold) 45%, var(--coral));
  box-shadow: 0 18px 38px rgba(255, 118, 88, 0.32);
  font-size: 15px;
  font-weight: 950;
}

.primary-btn:active,
.download-mini:active,
.store:active,
.float-cta a:active {
  transform: scale(0.985);
  filter: brightness(0.98);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.stat {
  min-height: 74px;
  padding: 12px 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
}

.stat:nth-child(1),
.stat:nth-child(5) {
  border-color: rgba(246, 197, 106, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 197, 106, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.085);
}

.stat b {
  display: block;
  color: #fff;
  font-size: clamp(17px, 5.2vw, 19px);
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 241, 0.58);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.35;
}

.live-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.avatars {
  display: flex;
  min-width: 88px;
}

.avatars img,
.avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid rgba(16, 10, 16, 0.92);
  border-radius: 999px;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatars span {
  display: grid;
  place-items: center;
  color: #211017;
  background: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.live-card p {
  color: rgba(255, 248, 241, 0.64);
  font-size: 12px;
  line-height: 1.48;
}

.live-card b {
  color: #fff;
  font-size: 12.5px;
}

.city-strip {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.city-strip::-webkit-scrollbar {
  display: none;
}

.city-strip span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 248, 241, 0.76);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
}

.city-strip span::after {
  content: " hot";
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
}

.heat-panel {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(246, 197, 106, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

.heat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(255, 63, 104, 0.13);
}

.heat-head b {
  font-size: 13px;
}

.heat-head em {
  margin-left: auto;
  color: rgba(255, 248, 241, 0.48);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

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

.heat-grid div {
  padding: 11px 10px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
}

.heat-grid b {
  display: block;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.heat-grid span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 241, 0.56);
  font-size: 11px;
  font-weight: 800;
}

.section {
  padding: 32px 0;
}

.section + .section {
  padding-top: 22px;
}

.section-title {
  margin-bottom: 16px;
}

.kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin-top: 8px;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.lead {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.quality-grid,
.profile-stack {
  display: grid;
  gap: 10px;
}

.quality-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.quality-card:first-child {
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 197, 106, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, rgba(255, 63, 104, 0.95), rgba(246, 197, 106, 0.88));
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(255, 63, 104, 0.24);
}

.quality-card h3 {
  font-size: 17px;
  letter-spacing: -0.03em;
}

.quality-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.profile {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #1b0c14;
  box-shadow: var(--shadow);
}

.profile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 10, 16, 0) 36%, rgba(16, 10, 16, 0.9) 100%);
}

.profile > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.profile-info {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.tag {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(16, 10, 16, 0.42);
  backdrop-filter: blur(16px);
  color: rgba(255, 248, 241, 0.88);
  font-size: 11px;
  font-weight: 900;
}

.profile h3 {
  font-size: 27px;
  letter-spacing: -0.055em;
}

.profile p {
  margin-top: 7px;
  color: rgba(255, 248, 241, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.profile-meta span {
  padding: 6px 8px;
  border-radius: 999px;
  color: rgba(255, 248, 241, 0.72);
  background: rgba(255, 255, 255, 0.09);
  font-size: 10.5px;
  font-weight: 850;
}

.match-panel {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.match-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 248, 241, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.bar {
  overflow: hidden;
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.bar span {
  display: block;
  width: 96%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

.review {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 197, 106, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.review + .review {
  margin-top: 10px;
}

.stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.review p {
  margin-top: 12px;
  color: rgba(255, 248, 241, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.review b {
  display: block;
  margin-top: 16px;
  font-size: 13px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 0%, rgba(246, 197, 106, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(255, 63, 104, 0.28), rgba(255, 118, 88, 0.13)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
}

.download-panel h2 {
  font-size: 30px;
}

.download-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.download-trust {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.download-trust span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 248, 241, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.store-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.store {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 950;
}

.store-primary {
  min-height: 56px;
  border: 0;
  color: #211017;
  background: linear-gradient(135deg, #fff5cf, var(--gold) 46%, var(--coral));
  box-shadow: 0 16px 38px rgba(255, 118, 88, 0.28);
  font-size: 16px;
}

footer {
  padding: 22px 0 34px;
  color: rgba(255, 248, 241, 0.42);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.float-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(7, 4, 7, 0), rgba(7, 4, 7, 0.86) 32%, rgba(7, 4, 7, 0.98));
}

.float-cta a {
  display: flex;
  width: min(398px, 100%);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #211017;
  background: linear-gradient(135deg, #fff5cf, var(--gold) 46%, var(--coral));
  box-shadow: 0 16px 42px rgba(255, 118, 88, 0.38);
  font-size: 17px;
  font-weight: 950;
}

@media (max-width: 360px) {
  h1 {
    font-size: 38px;
  }

  .hero-media {
    min-height: 500px;
  }
}
