:root {
  --bg: #050008;
  --pink: #ff007a;
  --pink2: #ff4db8;
  --cyan: #00e5ff;
  --purple: #7c3aed;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.55);
  --app-w: min(100%, 430px);
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Syne", system-ui, sans-serif;
  overflow-x: hidden;
}

body {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 0, 122, 0.42), transparent 58%),
    radial-gradient(ellipse 60% 40% at 100% 40%, rgba(124, 58, 237, 0.28), transparent 50%),
    var(--bg);
}

.spark {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.spark-a {
  width: 220px;
  height: 220px;
  top: 8%;
  right: -50px;
  background: rgba(255, 0, 122, 0.35);
}

.spark-b {
  width: 180px;
  height: 180px;
  bottom: 22%;
  left: -40px;
  background: rgba(124, 58, 237, 0.28);
}

.app {
  position: relative;
  z-index: 1;
  width: var(--app-w);
  margin: 0 auto;
  padding: 0 14px;
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 4px;
}

.logo {
  font-family: "Pacifico", cursive;
  font-size: 1.45rem;
  background: linear-gradient(135deg, var(--pink2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lang {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.showcase {
  margin: 0 -14px 10px;
  padding-bottom: 4px;
}

.showcase-top {
  text-align: center;
  padding: 0 16px 6px;
}

.sg-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(255, 0, 122, 0.12);
  border: 1px solid rgba(255, 0, 122, 0.45);
  box-shadow: 0 0 18px rgba(255, 0, 122, 0.2);
}

.showcase-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--pink2);
  text-transform: uppercase;
}

.track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 22px 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.track::-webkit-scrollbar {
  display: none;
}

.girl-card,
.host-card {
  position: relative;
  flex: 0 0 min(58vw, 220px);
  height: min(78vw, 300px);
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1.5px solid rgba(255, 0, 122, 0.4);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 0, 122, 0.18);
  transform: scale(0.92);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.girl-card.is-active,
.host-card.is-active {
  transform: scale(0.97);
  border-color: rgba(255, 77, 184, 0.9);
  box-shadow:
    0 18px 48px rgba(255, 0, 122, 0.28),
    0 0 32px rgba(255, 0, 122, 0.22);
}

.girl-card img,
.host-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: rgba(255, 0, 122, 0.92);
  box-shadow: 0 4px 14px rgba(255, 0, 122, 0.45);
}

.card-tag.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 20, 60, 0.95);
  box-shadow: 0 4px 16px rgba(255, 0, 60, 0.5);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: live-pulse 1.2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 0, 8, 0.2) 55%, rgba(5, 0, 8, 0.94) 100%);
  pointer-events: none;
}

.card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 10px 10px;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.name-row strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.age {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.verified {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-size: 0.68rem;
  font-weight: 800;
}

.loc {
  font-size: 0.8rem;
  color: var(--pink2);
  font-weight: 700;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 2px;
}

.dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots button.active {
  width: 22px;
  background: linear-gradient(90deg, var(--pink), var(--pink2));
}

.hero {
  text-align: center;
  padding: 4px 0 14px;
}

.title {
  margin: 0;
  font-size: clamp(2rem, 9vw, 2.6rem);
  font-weight: 800;
  line-height: 0.98;
}

.title span {
  display: block;
}

.title .neon {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.15rem, 5.2vw, 1.45rem);
  background: linear-gradient(90deg, var(--pink), var(--pink2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  padding: 0 2px;
}

.step {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 10px 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 122, 0.18);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.step strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 2px;
}

.step span:last-child {
  display: block;
  font-size: 0.58rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}

.step-arrow {
  flex: 0 0 auto;
  align-self: center;
  font-size: 0.85rem;
  color: rgba(255, 77, 184, 0.7);
  font-weight: 700;
}

.footnote {
  text-align: center;
  margin: 0 0 8px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
  line-height: 1.4;
  padding: 0 8px;
}

.sub {
  margin: 10px auto 0;
  max-width: 300px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 600;
}

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

.stats div {
  text-align: center;
  padding: 10px 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pink2);
}

.stats span {
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.pills span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 0, 122, 0.1);
  border: 1px solid rgba(255, 0, 122, 0.25);
}

.trust {
  text-align: center;
  margin: 0 0 6px;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(5, 0, 8, 0.98) 55%, transparent);
  backdrop-filter: blur(16px);
}

.cta {
  position: relative;
  display: block;
  width: min(100%, 430px);
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 17px 24px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink) 0%, #c026d3 50%, var(--purple) 100%);
  box-shadow: 0 8px 32px rgba(255, 0, 122, 0.55);
}

.cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

@media (min-width: 431px) {
  body { background: #000; }
  .app {
    border-left: 1px solid rgba(255, 0, 122, 0.12);
    border-right: 1px solid rgba(255, 0, 122, 0.12);
    min-height: 100vh;
  }
}
