@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=ZCOOL+QingKe+HuangYou&display=swap");

:root {
  --pcq-rose: #ff4d6d;
  --pcq-rose-deep: #e11d48;
  --pcq-teal: #14b8a6;
  --pcq-teal-soft: #99f6e4;
  --pcq-ink: #15202b;
  --pcq-muted: #5b6b7a;
  --pcq-paper: #fff8f6;
  --pcq-mist: #eefcf9;
  --pcq-line: rgba(21, 32, 43, 0.08);
  --pcq-glass: rgba(255, 255, 255, 0.55);
  --pcq-shadow: 0 18px 48px rgba(225, 29, 72, 0.12);
  --pcq-radius: 22px;
  --pcq-max: 1120px;
  --pcq-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --pcq-display: "ZCOOL QingKe HuangYou", "Noto Sans SC", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pcq-font);
  color: var(--pcq-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #ffe4e9 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #ccfbf1 0%, transparent 50%),
    linear-gradient(180deg, var(--pcq-paper) 0%, var(--pcq-mist) 48%, #fff 100%);
  line-height: 1.75;
  min-height: 100vh;
}

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

a {
  color: var(--pcq-rose-deep);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--pcq-teal);
}

.pcq-wrap {
  width: min(100% - 32px, var(--pcq-max));
  margin-inline: auto;
}

.pcq-promo {
  background: linear-gradient(90deg, rgba(255, 77, 109, 0.08), rgba(20, 184, 166, 0.1));
  border-bottom: 1px solid var(--pcq-line);
  padding: 12px 0 8px;
}

.pcq-promo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.pcq-promo-card {
  width: 72px;
  text-align: center;
  color: var(--pcq-muted);
  font-size: 11px;
}

.pcq-promo-card img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 auto 4px;
  box-shadow: 0 8px 18px rgba(21, 32, 43, 0.12);
  transition: transform 0.2s ease;
}

.pcq-promo-card:hover img {
  transform: translateY(-3px) scale(1.04);
}

.pcq-promo-card em {
  font-style: normal;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pcq-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 248, 246, 0.82);
  border-bottom: 1px solid var(--pcq-line);
}

.pcq-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.pcq-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pcq-ink);
  font-family: var(--pcq-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.pcq-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}

.pcq-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcq-nav-menu a {
  color: var(--pcq-ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.pcq-nav-menu a:hover {
  color: var(--pcq-rose);
}

.pcq-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pcq-line);
  border-radius: 12px;
  background: var(--pcq-glass);
  cursor: pointer;
  padding: 0;
}

.pcq-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--pcq-ink);
  transition: 0.2s ease;
}

.pcq-sticky-dl {
  position: sticky;
  top: 64px;
  z-index: 35;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pcq-line);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
}

.pcq-sticky-dl.is-visible {
  max-height: 220px;
  opacity: 1;
  pointer-events: auto;
  padding: 10px 0;
}

.pcq-sticky-dl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 6px;
  justify-items: center;
}

.pcq-dl-item {
  width: 100%;
  max-width: 72px;
  text-align: center;
  color: var(--pcq-muted);
  font-size: 10px;
}

.pcq-dl-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 3px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(21, 32, 43, 0.1);
}

.pcq-dl-item span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.pcq-sticky-on {
  scroll-padding-top: 180px;
}

.pcq-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 36px;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
}

.pcq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 248, 246, 0.92) 0%, rgba(238, 252, 249, 0.55) 42%, rgba(255, 248, 246, 0.2) 100%),
    url("shot-comic-serial.jpg") center / cover no-repeat;
  z-index: 0;
}

.pcq-hero .pcq-wrap {
  position: relative;
  z-index: 1;
}

.pcq-hero-brand {
  font-family: var(--pcq-display);
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.1;
  margin: 0 0 14px;
  background: linear-gradient(120deg, var(--pcq-rose-deep), #fb7185 45%, var(--pcq-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pcq-rise 0.8s ease both;
}

.pcq-hero h1 {
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  font-weight: 900;
  margin: 0 0 12px;
  max-width: 18em;
  animation: pcq-rise 0.9s 0.08s ease both;
}

.pcq-hero-lead {
  font-size: 1.05rem;
  color: var(--pcq-muted);
  max-width: 28em;
  margin: 0 0 22px;
  animation: pcq-rise 1s 0.14s ease both;
}

.pcq-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: pcq-rise 1s 0.2s ease both;
}

.pcq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.pcq-btn-main {
  background: linear-gradient(135deg, var(--pcq-rose), var(--pcq-rose-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.28);
}

.pcq-btn-main:hover {
  color: #fff;
  opacity: 0.92;
}

.pcq-btn-ghost {
  background: var(--pcq-glass);
  border-color: rgba(21, 32, 43, 0.12);
  color: var(--pcq-ink);
  backdrop-filter: blur(8px);
}

.pcq-section {
  padding: 56px 0;
}

.pcq-section h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.pcq-section h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--pcq-ink);
}

.pcq-section p {
  margin: 0 0 14px;
  color: #324152;
  font-size: 1rem;
}

.pcq-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pcq-teal);
  font-weight: 700;
  margin-bottom: 8px;
}

.pcq-split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.pcq-split-media {
  position: relative;
  border-radius: var(--pcq-radius);
  overflow: hidden;
  box-shadow: var(--pcq-shadow);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.pcq-split-media:hover {
  transform: translateY(-6px);
}

.pcq-split-media img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  max-height: 520px;
}

.pcq-glass-panel {
  background: var(--pcq-glass);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--pcq-radius);
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(21, 32, 43, 0.06);
}

.pcq-feature-rail {
  display: grid;
  gap: 14px;
}

.pcq-feature-tile {
  background: #fff;
  border: 1px solid var(--pcq-line);
  border-radius: 18px;
  padding: 18px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pcq-feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--pcq-shadow);
}

.pcq-feature-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.pcq-mosaic {
  display: grid;
  gap: 16px;
}

.pcq-mosaic figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pcq-line);
}

.pcq-mosaic img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.pcq-mosaic figcaption {
  padding: 10px 12px 14px;
  font-size: 0.9rem;
  color: var(--pcq-muted);
}

.pcq-text-block + .pcq-text-block {
  margin-top: 18px;
}

.pcq-quote {
  border-left: 4px solid var(--pcq-teal);
  padding: 8px 0 8px 16px;
  margin: 20px 0;
  color: var(--pcq-muted);
  font-size: 1.05rem;
}

.pcq-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 8px;
}

.pcq-chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  font-size: 0.85rem;
  font-weight: 600;
}

.pcq-breadcrumb {
  padding: 18px 0 0;
  font-size: 0.88rem;
  color: var(--pcq-muted);
}

.pcq-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcq-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #9aa7b5;
}

.pcq-breadcrumb a {
  color: var(--pcq-muted);
}

.pcq-page-hero {
  padding: 28px 0 10px;
}

.pcq-page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.pcq-legal {
  padding-bottom: 64px;
}

.pcq-legal h2 {
  margin-top: 32px;
}

.pcq-footer {
  margin-top: 40px;
  padding: 36px 0 28px;
  background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.08));
  border-top: 1px solid var(--pcq-line);
}

.pcq-footer-grid {
  display: grid;
  gap: 22px;
}

.pcq-footer h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.pcq-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcq-footer li {
  margin-bottom: 8px;
}

.pcq-footer a {
  color: var(--pcq-muted);
}

.pcq-copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--pcq-line);
  font-size: 0.85rem;
  color: #7a8794;
  text-align: center;
}

.pcq-error {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 0;
}

.pcq-error-code {
  font-family: var(--pcq-display);
  font-size: clamp(4rem, 18vw, 7rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--pcq-rose), var(--pcq-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  animation: pcq-pulse 2.4s ease-in-out infinite;
}

@keyframes pcq-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pcq-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@media (min-width: 720px) {
  .pcq-sticky-dl-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .pcq-split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .pcq-split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .pcq-split.reverse .pcq-split-copy {
    order: 2;
  }

  .pcq-feature-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .pcq-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .pcq-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .pcq-nav-toggle {
    display: inline-block;
  }

  .pcq-nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--pcq-line);
    border-radius: 16px;
    box-shadow: var(--pcq-shadow);
  }

  .pcq-nav-menu.is-open {
    display: flex;
  }

  .pcq-nav-menu a {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .pcq-nav-menu a:hover {
    background: rgba(255, 77, 109, 0.08);
  }
}

@media (min-width: 980px) {
  .pcq-hero {
    padding: 72px 0 56px;
  }

  .pcq-split-media img {
    max-height: 580px;
  }
}
