/* ============================================================
   妖精tv - 共享样式表
   年轻潮流泛娱乐视频平台
   主色：活力紫 #8b5cf6 + 亮粉 #ec4899 + 深色 #1e1b2e
   ============================================================ */

:root {
  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
  --purple-light: #a78bfa;
  --pink: #ec4899;
  --pink-light: #f472b6;
  --dark: #1e1b2e;
  --dark-2: #2a2540;
  --dark-3: #3a3357;
  --bg: #f7f6fb;
  --bg-soft: #efeef6;
  --text: #1e1b2e;
  --text-soft: #5b5572;
  --text-muted: #8b86a3;
  --white: #ffffff;
  --line: #e7e4f0;
  --grad-main: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --grad-main-soft: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
  --grad-dark: linear-gradient(135deg, #1e1b2e 0%, #2a2540 100%);
  --grad-hero: linear-gradient(120deg, #7c3aed 0%, #8b5cf6 35%, #ec4899 100%);
  --grad-fire: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --grad-live: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
  --grad-vip: linear-gradient(135deg, #f59e0b 0%, #ec4899 60%, #8b5cf6 100%);
  --shadow-sm: 0 2px 8px rgba(30, 27, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 27, 46, 0.1);
  --shadow-lg: 0 16px 48px rgba(139, 92, 246, 0.18);
  --shadow-pink: 0 12px 32px rgba(236, 72, 153, 0.22);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1240px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-sm {
  padding: 40px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title h2 .accent {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .more {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.section-title .more:hover {
  color: var(--purple);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg-soft);
  color: var(--purple-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.32);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.btn-white {
  background: #fff;
  color: var(--purple-dark);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--grad-main);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}

.brand-logo svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.nav-links a.active {
  color: var(--purple-dark);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  width: 240px;
  gap: 8px;
}

.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--text);
  min-width: 0;
}

.nav-search input::placeholder {
  color: var(--text-muted);
}

.nav-search button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-main);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nav-search button svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions .btn-login {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
}

.nav-actions .btn-vip {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #5b2c00;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.nav-actions .btn-vip svg {
  width: 14px;
  height: 14px;
  fill: #5b2c00;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  place-items: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  color: #fff;
  padding: 80px 0 100px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  top: -120px;
  right: 8%;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  bottom: -100px;
  left: 4%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.4s infinite;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 .hl {
  background: linear-gradient(135deg, #fff, #ffe4f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

/* Hero visual: stacked play cards */
.hero-visual {
  position: relative;
  height: 380px;
}

.hero-play-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2a2540, #1e1b2e);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-play-cover {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(236, 72, 153, 0.7), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(139, 92, 246, 0.75), transparent 55%),
    linear-gradient(135deg, #8b5cf6, #ec4899);
}

.hero-play-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5));
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  animation: pulse 2.4s infinite;
}

.hero-play-btn svg {
  width: 34px;
  height: 34px;
  fill: var(--purple-dark);
  margin-left: 4px;
}

.hero-play-meta {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  color: #fff;
}

.hero-play-meta .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-live);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-play-meta .live-badge .dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}

.hero-play-meta h3 {
  font-size: 20px;
  font-weight: 800;
}

.hero-play-meta .viewers {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  z-index: 4;
}

.hero-float-card .ic {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.hero-float-card .ic svg {
  width: 18px;
  height: 18px;
}

.hero-float-1 {
  top: 20px;
  left: -30px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 .ic {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.hero-float-1 .ic svg {
  fill: #fff;
}

.hero-float-2 {
  bottom: 40px;
  right: -20px;
  animation: float 5s ease-in-out infinite 0.5s;
}

.hero-float-2 .ic {
  background: var(--grad-main);
}

.hero-float-2 .ic svg {
  fill: #fff;
}

/* ---------- Marquee / Live channel strip ---------- */
.live-strip {
  background: var(--dark);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
}

.live-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-live);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.live-strip-label .dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}

.live-strip-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
}

.live-strip-track::-webkit-scrollbar {
  height: 5px;
}

.live-strip-track::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 4px;
}

.live-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.live-channel:hover {
  background: rgba(255, 255, 255, 0.12);
}

.live-channel .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.live-channel .info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.live-channel .name {
  font-size: 13px;
  font-weight: 700;
}

.live-channel .meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.live-channel .meta b {
  color: var(--pink-light);
}

/* ---------- Video grid & cards ---------- */
.grid {
  display: grid;
  gap: 22px;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.vcard {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vcard-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.vcard-cover .grad {
  position: absolute;
  inset: 0;
}

.vcard-cover .grad::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45));
}

.vcard-cover .play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(30, 27, 46, 0.35);
  opacity: 0;
  transition: opacity 0.2s;
}

.vcard:hover .vcard-cover .play-overlay {
  opacity: 1;
}

.play-overlay .circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  transform: scale(0.8);
  transition: transform 0.2s;
}

.vcard:hover .play-overlay .circle {
  transform: scale(1);
}

.play-overlay .circle svg {
  width: 24px;
  height: 24px;
  fill: var(--purple-dark);
  margin-left: 3px;
}

.vcard-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}

.vcard-badge.tl {
  top: 10px;
  left: 10px;
}

.vcard-badge.br {
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.vcard-badge.live {
  background: var(--grad-live);
}

.vcard-badge.hot {
  background: var(--grad-fire);
}

.vcard-badge.vip {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #5b2c00;
}

.vcard-badge .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.vcard-badge.live .dot {
  animation: blink 1s infinite;
}

.vcard-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vcard-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vcard-up {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 8px;
}

.vcard-up .av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vcard-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  color: var(--text-muted);
  font-size: 12px;
}

.vcard-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vcard-meta svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Gradient cover variations */
.g1 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.g2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.g3 { background: linear-gradient(135deg, #ec4899, #f59e0b); }
.g4 { background: linear-gradient(135deg, #06b6d4, #8b5cf6); }
.g5 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.g6 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.g7 { background: linear-gradient(135deg, #ef4444, #ec4899); }
.g8 { background: linear-gradient(135deg, #8b5cf6, #3b82f6); }
.g9 { background: linear-gradient(135deg, #14b8a6, #8b5cf6); }
.g10 { background: linear-gradient(135deg, #f43f5e, #8b5cf6); }
.g11 { background: linear-gradient(135deg, #a855f7, #ec4899); }
.g12 { background: linear-gradient(135deg, #0ea5e9, #6366f1); }

.cover-deco {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.cover-deco svg {
  position: absolute;
}

.cover-title {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Category chips ---------- */
.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all 0.2s;
  cursor: pointer;
}

.chip:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.chip.active {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-pink);
}

/* ---------- Section blocks / banners ---------- */
.section-soft {
  background: var(--bg-soft);
}

.banner {
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.banner-purple {
  background: var(--grad-main);
  box-shadow: var(--shadow-lg);
}

.banner-dark {
  background: var(--grad-dark);
}

.banner-vip {
  background: var(--grad-vip);
}

.banner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  top: -120px;
  right: -60px;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.banner h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.banner p {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 22px;
}

/* ---------- Creator / UP主 cards ---------- */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.creator-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.creator-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.creator-av {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 14px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.creator-av::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--grad-main) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.creator-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.creator-cat {
  font-size: 12px;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 12px;
}

.creator-stats {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--text-muted);
  font-size: 12px;
}

.creator-stats b {
  color: var(--text);
  font-size: 14px;
  display: block;
}

.creator-follow {
  margin-top: 14px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.creator-follow:hover {
  background: var(--grad-main);
  color: #fff;
}

/* ---------- Category entry tiles ---------- */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cat-tile {
  border-radius: var(--radius-md);
  padding: 24px 16px;
  color: #fff;
  text-align: center;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
}

.cat-tile:hover {
  transform: translateY(-4px) scale(1.02);
}

.cat-tile svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  margin-bottom: 10px;
}

.cat-tile .name {
  font-size: 15px;
  font-weight: 800;
}

.cat-tile .count {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

/* ---------- VIP privilege ---------- */
.vip-banner {
  background: var(--grad-vip);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.vip-banner::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  top: -140px;
  right: -80px;
}

.vip-banner-content {
  position: relative;
  z-index: 2;
}

.vip-banner h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 14px;
}

.vip-banner p {
  font-size: 16px;
  opacity: 0.94;
  margin-bottom: 24px;
}

.vip-perks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.vip-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.vip-perk svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.vip-crown {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.vip-crown .ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}

.vip-crown svg {
  width: 90px;
  height: 90px;
  fill: #fff;
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  top: -120px;
  right: 6%;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 640px;
  position: relative;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- Filter bar (shows page) ---------- */
.filter-bar {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.filter-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.filter-row:last-child {
  border-bottom: none;
}

.filter-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  flex-shrink: 0;
  width: 70px;
  padding-top: 6px;
}

.filter-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-opt {
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-opt:hover {
  color: var(--purple);
  background: var(--bg-soft);
}

.filter-opt.active {
  background: var(--grad-main);
  color: #fff;
  font-weight: 600;
}

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.sort-bar .count {
  font-size: 14px;
  color: var(--text-muted);
}

.sort-bar .count b {
  color: var(--purple);
}

.sort-options {
  display: flex;
  gap: 6px;
}

.sort-opt {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
}

.sort-opt.active {
  background: var(--dark);
  color: #fff;
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  display: grid;
  place-items: center;
  padding: 0 12px;
  cursor: pointer;
  transition: all 0.15s;
}

.page-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.page-btn.active {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
}

.page-btn.dots {
  border: none;
  background: transparent;
  cursor: default;
}

/* ---------- Schedule / 周历 ---------- */
.schedule-week {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 40px;
}

.schedule-week-header {
  display: grid;
  grid-template-columns: 90px repeat(7, 1fr);
  background: var(--grad-dark);
  color: #fff;
}

.schedule-week-header > div {
  padding: 16px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-week-header > div:last-child {
  border-right: none;
}

.schedule-week-header .time-col {
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
}

.schedule-week-header .day .num {
  font-size: 20px;
  font-weight: 900;
  display: block;
}

.schedule-week-header .day .week {
  font-size: 12px;
  opacity: 0.8;
}

.schedule-week-header .day.today {
  background: var(--grad-live);
}

.schedule-week-body {
  display: grid;
  grid-template-columns: 90px repeat(7, 1fr);
}

.schedule-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px;
  min-height: 76px;
  font-size: 12px;
}

.schedule-cell.time {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--text-soft);
  text-align: center;
  display: grid;
  place-items: center;
}

.schedule-prog {
  background: var(--grad-main-soft);
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  height: 100%;
  cursor: pointer;
  transition: transform 0.15s;
}

.schedule-prog:hover {
  transform: scale(1.03);
}

.schedule-prog.live {
  background: var(--grad-live);
}

.schedule-prog.preview {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.schedule-prog .t {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--purple);
}

.timeline-item.live::before {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.2);
  animation: pulse-ring 1.8s infinite;
}

.timeline-time {
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 4px;
}

.timeline-item.live .timeline-time {
  color: var(--pink);
}

.timeline-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 14px;
  align-items: center;
}

.timeline-thumb {
  width: 96px;
  height: 60px;
  border-radius: 10px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.timeline-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35));
}

.timeline-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-info .meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline-info .meta .tag {
  color: var(--purple);
  font-weight: 600;
}

.timeline-sub {
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-sub.subscribed {
  background: var(--grad-main);
  color: #fff;
}

/* ---------- Today must-watch ---------- */
.today-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.today-card:hover {
  transform: translateX(4px);
}

.today-thumb {
  width: 180px;
  flex-shrink: 0;
  position: relative;
}

.today-body {
  padding: 16px 18px;
  flex: 1;
}

.today-body h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.today-body p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.today-body .meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- VIP pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--line);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-lg);
}

.price-card.featured::before {
  content: "最受欢迎";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card .plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-card .price .cur {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-soft);
}

.price-card .price .num {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.price-card .price .unit {
  font-size: 15px;
  color: var(--text-muted);
}

.price-card .price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 22px;
}

.price-card .btn {
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

.price-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.price-features li.yes svg {
  fill: #10b981;
}

.price-features li.no {
  color: var(--text-muted);
}

.price-features li.no svg {
  fill: #d1d5db;
}

/* ---------- VIP compare table ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: var(--bg-soft);
  font-size: 15px;
  font-weight: 800;
}

.compare-table th:not(:first-child) {
  font-size: 17px;
}

.compare-table th .badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 4px;
  font-weight: 700;
}

.compare-table th .badge.vip {
  background: var(--grad-main);
  color: #fff;
}

.compare-table th .badge.svip {
  background: var(--grad-vip);
  color: #fff;
}

.compare-table th.col-feature {
  background: var(--dark);
  color: #fff;
  text-align: left;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg-soft);
}

.compare-table tbody tr:hover {
  background: rgba(139, 92, 246, 0.03);
}

.compare-table .yes {
  color: #10b981;
  font-weight: 700;
}

.compare-table .no {
  color: #d1d5db;
}

.compare-table svg {
  width: 18px;
  height: 18px;
}

.compare-table .yes svg {
  fill: #10b981;
}

.compare-table .no svg {
  fill: #d1d5db;
}

/* ---------- Benefit icon grid ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}

.faq-q {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--bg-soft);
}

.faq-q .q-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--purple);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s;
}

.faq-item.open .faq-q .q-icon {
  transform: rotate(45deg);
  background: var(--grad-main);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Help category cards ---------- */
.help-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.help-cat {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.help-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.help-cat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.help-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.help-cat-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.help-cat h3 {
  font-size: 17px;
  font-weight: 800;
}

.help-cat p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.help-cat ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-cat ul li {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.help-cat ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ---------- Contact card ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.contact-card .ic svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card .val {
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  margin-top: 6px;
}

/* ---------- About page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-intro h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.25;
}

.about-intro p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-visual {
  position: relative;
  height: 340px;
}

.about-visual .blob {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
}

.about-visual .blob-1 {
  inset: 0 40px 40px 0;
  background: var(--grad-main);
  display: grid;
  place-items: center;
}

.about-visual .blob-1 svg {
  width: 120px;
  height: 120px;
  fill: rgba(255, 255, 255, 0.85);
}

.about-visual .blob-2 {
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background: var(--grad-dark);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.about-visual .blob-2 .big {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.about-visual .blob-2 .small {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 6px;
}

/* value / milestone cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--purple);
}

.value-card .num {
  font-size: 14px;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.milestone {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.milestone .year {
  font-size: 28px;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.milestone h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.milestone p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ecosystem */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.eco-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.eco-card svg {
  width: 36px;
  height: 36px;
  fill: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.eco-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.eco-card p {
  font-size: 14px;
  opacity: 0.92;
  line-height: 1.7;
}

/* join us */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.job-card .title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.job-card .sub {
  font-size: 13px;
  color: var(--text-muted);
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--text-soft);
  font-weight: 600;
}

.job-salary {
  font-size: 16px;
  font-weight: 800;
  color: var(--pink);
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--grad-dark);
  color: #fff;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .num {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-main);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-band h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}

.cta-band p {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 26px;
  position: relative;
}

.cta-band .btns {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--grad-main);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--pink-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.footer-bottom .links {
  display: flex;
  gap: 16px;
}

.footer-bottom a:hover {
  color: var(--pink-light);
}

/* ---------- Animations ---------- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50% { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 16px rgba(255, 255, 255, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
  100% { box-shadow: 0 0 0 12px rgba(236, 72, 153, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(4, 1fr); }
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
  .creator-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav-search { display: none; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--grad-main);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; }
  .nav-toggle { display: grid; }
  .nav-actions .btn-login { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-visual { height: 300px; margin-top: 12px; }
  .hero-float-1 { left: 0; }
  .hero-float-2 { right: 0; }

  .grid-5, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .eco-grid, .value-grid { grid-template-columns: 1fr; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .help-cat-grid, .contact-grid { grid-template-columns: 1fr; }

  .about-intro { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }

  .vip-banner { grid-template-columns: 1fr; padding: 32px; }
  .vip-crown { display: none; }

  .price-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .milestone-grid { grid-template-columns: 1fr; }

  .schedule-week-header,
  .schedule-week-body {
    grid-template-columns: 70px repeat(7, minmax(110px, 1fr));
  }
  .schedule-week { overflow-x: auto; }

  .schedule-cols { grid-template-columns: 1fr !important; gap: 36px !important; }

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .today-card { flex-direction: column; }
  .today-thumb { width: 100%; aspect-ratio: 16/9; height: auto; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: 30px; }
  .hero p.lead { font-size: 15px; }
  .hero-stats { gap: 22px; }
  .hero-stat .num { font-size: 22px; }

  .page-hero { padding: 36px 0 40px; }
  .page-hero h1 { font-size: 28px; }

  .grid-5, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }

  .banner, .cta-band, .vip-banner { padding: 28px; }
  .banner h3, .cta-band h2 { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .timeline-card { flex-wrap: wrap; }
  .timeline-sub { margin-left: 0; }
}
