:root {
  --pink: #ff2d78;
  --violet: #a855f7;
  --cyan: #22d3ee;
  --text: #f5f2fa;
  --dim: #f5f2fa9e;
  --grad: linear-gradient(135deg, #ff2d78, #a855f7);
}
* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
  margin: 0;
  background: #07040d;
  color: var(--text);
  font-family: Inter, "PingFang SC", system-ui, sans-serif;
}
button {
  font: inherit;
}
.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, #a855f729, transparent 60%),
    radial-gradient(100% 70% at 0% 110%, #ff2d7824, transparent 58%), #07040d;
}
.wall {
  position: absolute;
  inset: -8px;
  display: block;
  overflow: hidden;
  opacity: 0.4;
  filter: blur(2px);
  background:
    radial-gradient(circle at 14% 22%, #f3759b66, transparent 19%),
    radial-gradient(circle at 78% 45%, #54dff64f, transparent 25%),
    radial-gradient(circle at 38% 76%, #c64c8f55, transparent 22%),
    linear-gradient(164deg, #271134cc, #15122d 47%, #1e0c22);
}
.wall i {
  display: none;
}
.veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #07040db8, #07040d9c 48%, #07040deb);
}
.body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 520px);
  min-height: 100svh;
  margin: auto;
  padding: calc(14px + env(safe-area-inset-top)) 18px 20px;
}
.brandbar {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.mini-logo {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-right: 8px;
  border-radius: 8px;
  background: var(--grad);
  box-shadow: 0 0 14px #ff2d788c;
}
.mini-logo svg {
  width: 23px;
  height: 23px;
  filter: drop-shadow(0 0 2px #fff8);
}
.mini-logo-arc,
.mini-logo-u {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mini-logo-arc {
  stroke-width: 6;
}
.mini-logo-u {
  stroke-width: 8;
}
.mini-logo-play {
  fill: #22d3ee;
}
.mini-logo-dot {
  fill: #ff2d78;
}
.language {
  position: relative;
  margin-left: auto;
}
.language > button {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  color: var(--dim);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}
.language-menu {
  position: absolute;
  top: 28px;
  right: 0;
  display: none;
  min-width: 90px;
  padding: 5px;
  border: 1px solid #a855f74d;
  border-radius: 12px;
  background: #160b25f5;
  box-shadow: 0 10px 30px #0009;
}
.language-menu.show {
  display: grid;
}
.language-menu button {
  padding: 8px;
  border: 0;
  border-radius: 8px;
  color: var(--dim);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.language-menu button:hover {
  color: #fff;
  background: #ffffff13;
}
.adult {
  margin-left: 11px;
  padding: 3px 7px;
  border: 1px solid #ff2d7866;
  border-radius: 99px;
  color: #ffb7d0;
  font-size: 10px;
  font-weight: 800;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 7vh;
  text-align: center;
}
.logo-ring {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  padding: 3px;
  border-radius: 32px;
  background: conic-gradient(from 120deg, #ff2d78, #a855f7, #22d3ee, #ff2d78);
  box-shadow:
    0 0 42px #ff2d7873,
    0 0 90px #a855f747;
  animation: spin 6s linear infinite;
}
.logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 29px;
  background: linear-gradient(160deg, #2a1245, #170a2c);
  animation: counter-spin 6s linear infinite;
}
.logo svg {
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 0 6px #ff2d78a8);
}
.logo-arc,
.logo-u {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-arc {
  stroke-width: 5;
}
.logo-u {
  stroke: #ffb4d3;
  stroke-width: 8;
}
.logo-play {
  fill: #22d3ee;
}
.logo-dot {
  fill: #ff2d78;
  filter: drop-shadow(0 0 5px #ff2d78);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes counter-spin {
  to {
    transform: rotate(-360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-ring,
  .logo {
    animation: none;
  }
}
.kicker {
  margin: 25px 0 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-shadow: 0 0 12px #22d3eebd;
}
.hero h1 {
  margin: 9px 0 0;
  background: linear-gradient(120deg, #fff, #ffc2da 38%, #ff2d78 62%, #a855f7);
  background-clip: text;
  color: transparent;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.intro {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.65;
}
.stats {
  display: flex;
  gap: 8px;
  width: min(100%, 420px);
  margin-top: 25px;
}
.stats div {
  flex: 1;
  padding: 12px 5px;
  border: 1px solid #ffffff17;
  border-radius: 16px;
  background: #ffffff0e;
  backdrop-filter: blur(8px);
}
.stats strong {
  display: block;
  background: var(--grad);
  background-clip: text;
  color: transparent;
  font-size: 17px;
}
.stats span {
  display: block;
  margin-top: 3px;
  color: #f5f2fa82;
  font-size: 10px;
}
.featured {
  width: 100%;
  margin-top: 34px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.section-head b {
  font-size: 16px;
}
.section-head b:before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  content: "";
}
.section-head span {
  color: #f5f2fa77;
  font-size: 11px;
}
.rail {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar {
  display: none;
}
.rail article {
  position: relative;
  flex: 0 0 132px;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid #ffffff22;
  border-radius: 16px;
  background: #150b26;
  cursor: pointer;
}
.rail article:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.card-img {
  position: absolute;
  inset: 0 0 0 0;
}
.card-img[data-cover] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.card-img:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, #07040ded);
  content: "";
}
.a {
  background:
    radial-gradient(circle at 65% 25%, #ffb0d8aa, transparent 18%),
    linear-gradient(145deg, #f22c778c, #290c60 51%, #050617);
}
.b {
  background:
    radial-gradient(circle at 34% 22%, #ffe6a0aa, transparent 15%),
    linear-gradient(145deg, #38c9e688, #0c1940 53%, #391234);
}
.c {
  background:
    radial-gradient(circle at 56% 17%, #ffd471aa, transparent 13%),
    linear-gradient(145deg, #e7355266, #5b166a 50%, #06162a);
}
.rail article > div:last-child {
  position: absolute;
  z-index: 2;
  right: 9px;
  bottom: 9px;
  left: 9px;
}
.rail b {
  display: block;
  font-size: 11px;
  line-height: 1.35;
}
.rail small {
  display: block;
  margin-top: 3px;
  color: #ffffff92;
  font-size: 10px;
}
.hot,
.duration {
  position: absolute;
  z-index: 2;
  top: 8px;
  padding: 3px 7px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 900;
}
.hot {
  left: 8px;
  background: var(--grad);
}
.duration {
  right: 8px;
  background: #0000008c;
}
.cta {
  width: 100%;
  max-width: 420px;
  margin-top: 30px;
  text-align: center;
}
.cta button {
  width: 100%;
  padding: 18px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 32px #ff2d786b;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  animation: breathe 2.4s ease-in-out infinite;
}
@keyframes breathe {
  50% {
    box-shadow:
      0 10px 46px #ff2d78ad,
      0 0 34px #a855f780;
  }
}
.cta p {
  margin: 12px 0 0;
  color: #f5f2fa80;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.cta small {
  display: block;
  margin: 22px auto 0;
  max-width: 380px;
  color: #f5f2fa75;
  font-size: 10px;
  line-height: 1.7;
}
.body footer {
  margin-top: auto;
  padding-top: 30px;
  color: #f5f2fa78;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.age {
  position: fixed;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  background: #05020ac7;
  backdrop-filter: blur(18px);
}
.age section {
  width: min(360px, 100%);
  padding: 30px 24px 24px;
  border: 1px solid #a855f74d;
  border-radius: 24px;
  background: linear-gradient(170deg, #22113af0, #0c0616f5);
  box-shadow: 0 24px 70px #0009;
  text-align: center;
}
.badge {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 26px #ff2d788c;
  font-size: 18px;
  font-weight: 900;
}
.age h2 {
  margin: 18px 0 0;
  font-size: 20px;
}
.age p {
  margin: 10px 0 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.7;
}
.age button {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.age #enter {
  margin-top: 22px;
  padding: 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 24px #ff2d7866;
  font-size: 15px;
  font-weight: 800;
}
.age #leave {
  margin-top: 8px;
  padding: 8px;
  color: #f5f2fa8f;
  background: transparent;
  font-size: 13px;
}
.toast {
  position: fixed;
  z-index: 6;
  bottom: 26px;
  left: 50%;
  padding: 10px 15px;
  border-radius: 99px;
  background: #221138ed;
  box-shadow: 0 8px 24px #0008;
  color: #fff;
  font-size: 12px;
  transform: translate(-50%, 90px);
  transition: 0.25s;
}
.toast.show {
  transform: translate(-50%, 0);
}
@media (min-width: 520px) {
  .body {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero h1 {
    font-size: 52px;
  }
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #12091f;
}

.landing {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(120% 80% at 80% -10%, #a855f729, transparent 60%),
    radial-gradient(100% 70% at 0% 110%, #ff2d7824, transparent 58%), #12091f;
}
