:root {
  color-scheme: dark;
  --ink: #fff8fb;
  --muted: #cdb1bf;
  --line: rgba(255, 255, 255, 0.14);
  --hot: #ff2f7d;
  --rose: #ff6a9e;
  --violet: #8a4dff;
  --gold: #ffc35a;
  --panel: rgba(34, 15, 34, 0.76);
  --panel-solid: #211121;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial,
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 47, 125, 0.32), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(138, 77, 255, 0.3), transparent 28rem),
    linear-gradient(155deg, #07040a 0%, #1a0718 48%, #100815 100%);
  letter-spacing: 0;
}

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

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.download-button,
.wide-download {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #16040d;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(255, 47, 125, 0.36);
}

.site-nav {
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.header-download,
.chip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.header-download {
  padding: 10px 14px;
  font-size: 14px;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  min-height: 600px;
  padding: 34px 0 28px;
  cursor: pointer;
}

.hero-copy,
.featured-room,
.download-panel,
.girl-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(28px, 6vw, 68px);
  overflow: hidden;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% 22%;
  height: 210px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 47, 125, 0.34), rgba(138, 77, 255, 0.3));
  filter: blur(36px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.download-button,
.wide-download {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--hot), var(--violet));
  box-shadow: 0 24px 54px rgba(255, 47, 125, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.download-button {
  width: fit-content;
  min-height: 74px;
  gap: 14px;
  padding: 12px 24px 12px 14px;
}

.download-button:hover,
.download-button:focus-visible,
.wide-download:hover,
.wide-download:focus-visible,
.girl-card:hover,
.featured-room:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(255, 47, 125, 0.42);
}

.button-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 8px;
  color: #19050f;
  background: var(--gold);
}

.download-button strong,
.download-button small {
  display: block;
}

.download-button strong {
  font-size: 20px;
}

.download-button small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.featured-room {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.live-badge,
.status {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.live-badge {
  top: 18px;
  left: 18px;
  padding: 9px 11px;
  background: rgba(10, 6, 13, 0.72);
}

.live-badge i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff245f;
  box-shadow: 0 0 0 7px rgba(255, 36, 95, 0.17);
}

.portrait {
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: #211121;
}

.portrait-xl {
  flex: 1;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
}

.room-meta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 5, 13, 0.72);
  backdrop-filter: blur(16px);
}

.room-meta strong {
  display: block;
  margin-bottom: 7px;
  font-size: 22px;
}

.room-meta span,
.girl-card p,
.download-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 18px;
}

.toolbar h2,
.download-panel h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.chip {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.chip.active {
  color: #1a0610;
  background: var(--gold);
}

.girls-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 56px;
}

.girl-card {
  position: relative;
  display: block;
  padding: 10px 10px 16px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.girl-card .portrait {
  margin-bottom: 14px;
}

.girl-card h3 {
  margin: 0 6px 4px;
  font-size: 22px;
}

.girl-card p {
  margin: 0 6px;
  font-size: 14px;
}

.status {
  top: 20px;
  right: 20px;
  padding: 7px 9px;
  background: rgba(11, 5, 13, 0.72);
}

.status.online {
  color: #66ffc2;
}

.status.hot {
  color: var(--gold);
}

.status.new {
  color: #ff9fc4;
}

.download-panel {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.56fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
  padding: 30px;
}

.wide-download {
  min-height: 78px;
  justify-content: center;
  flex-direction: column;
  padding: 16px;
  text-align: center;
}

.wide-download span {
  margin-bottom: 5px;
  font-size: 13px;
  opacity: 0.75;
}

.wide-download strong {
  font-size: 19px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 32px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .featured-room {
    min-height: 460px;
  }

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

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-copy {
    padding: 28px 20px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .lead {
    font-size: 17px;
  }

  .download-button,
  .wide-download {
    width: 100%;
  }

  .download-button {
    justify-content: flex-start;
  }

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .chips {
    justify-content: flex-start;
  }

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

  .portrait {
    height: 300px;
  }

  .site-footer {
    flex-direction: column;
  }
}
