/* 蘑菇视频 MOGU VIDEO - 官方站点样式 */
:root {
  --bg: #FFFFFF;
  --bg-soft: #FFF7FA;
  --bg-pink: #FFF0F5;
  --bg-gray: #F7F7F8;
  --title: #222222;
  --text: #444444;
  --sec: #777777;
  --aux: #999999;
  --brand: #FF1765;
  --bright: #FF3D7D;
  --rose: #E90052;
  --deep: #C90046;
  --pale: #FFD8E6;
  --soft: #FFF0F5;
  --border: rgba(255,23,101,0.12);
  --border-gray: rgba(0,0,0,0.08);
  --shadow: 0 14px 40px rgba(30,20,25,0.08);
  --shadow-pink: 0 16px 42px rgba(255,23,101,0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --nav-h: 72px;
  --max: 1280px;
  --footer-bg: #171717;
  --footer-text: #F4F4F4;
}

*, *::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, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  padding-top: var(--nav-h);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rose); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

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

@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

/* ========== 顶部导航 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gray);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--title);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.logo-link img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  color: var(--brand);
  font-weight: 800;
}

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

.nav-menu a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .2s;
}

.nav-menu a:hover {
  color: var(--brand);
  background: var(--soft);
}

.nav-menu a.active {
  color: var(--brand);
  background: var(--pale);
  font-weight: 600;
}

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
}

.nav-btn:hover {
  background: var(--soft);
  color: var(--brand);
}

.nav-btn-search svg,
.nav-btn-menu svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nav-btn-app {
  background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255,23,101,0.3);
}

.nav-btn-app:hover {
  filter: brightness(1.05);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(255,23,101,0.4);
}

.nav-btn-watchlist {
  border: 1.5px solid var(--border);
  color: var(--brand);
}

.nav-btn-watchlist:hover {
  background: var(--soft);
}

/* 手机端导航调整 */
.mobile-menu-btn,
.mobile-logo {
  display: none;
}

@media (max-width: 960px) {
  .nav-menu { display: none; }
  .nav-btn-watchlist { display: none; }
  .mobile-menu-btn {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
  }
  .mobile-logo {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-left { flex: 0; }
  .logo-link.desktop-logo { display: none; }
  .nav-right { margin-left: auto; }
}

/* ========== 频道面板 ========== */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,10,15,0.45);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s, visibility .3s;
}

.panel-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.channel-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  max-width: 88vw;
  height: 100%;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  visibility: hidden;
  pointer-events: none;
}

.channel-panel.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-gray);
  flex-shrink: 0;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--title);
}

.panel-brand img {
  height: 32px;
  width: auto;
}

.panel-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sec);
  transition: all .2s;
}

.panel-close:hover {
  background: var(--bg-gray);
  color: var(--brand);
}

.panel-close svg {
  width: 20px;
  height: 20px;
}

.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px 40px;
  -webkit-overflow-scrolling: touch;
}

.panel-group {
  margin-bottom: 28px;
}

.panel-group-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--aux);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-left: 4px;
}

.panel-link {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  transition: background .2s;
}

.panel-link:hover {
  background: var(--soft);
}

.panel-link-name {
  font-weight: 600;
  color: var(--title);
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.panel-link-desc {
  font-size: 0.82rem;
  color: var(--sec);
  line-height: 1.5;
}

/* ========== 搜索面板 ========== */
.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, visibility .25s;
  display: flex;
  flex-direction: column;
}

.search-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 961px) {
  .search-panel {
    top: var(--nav-h);
    bottom: auto;
    height: auto;
    max-height: 70vh;
    border-bottom: 1px solid var(--border-gray);
    box-shadow: var(--shadow);
  }
}

.search-panel-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  overflow-y: auto;
}

.search-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.search-input-wrap {
  flex: 1;
  position: relative;
}

.search-input {
  width: 100%;
  height: 52px;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 0 24px 0 52px;
  font-size: 1rem;
  color: var(--title);
  background: var(--bg-soft);
  outline: none;
  transition: border-color .2s;
}

.search-input:focus {
  border-color: var(--brand);
  background: #fff;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aux);
  pointer-events: none;
}

.search-icon svg {
  width: 22px;
  height: 22px;
}

.search-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sec);
  flex-shrink: 0;
}

.search-close:hover {
  background: var(--bg-gray);
  color: var(--brand);
}

.search-section {
  margin-bottom: 28px;
}

.search-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aux);
  margin-bottom: 12px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-gray);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  transition: all .2s;
}

.search-tag:hover {
  background: var(--pale);
  color: var(--brand);
}

.search-results {
  display: none;
  margin-top: 16px;
}

.search-results.show {
  display: block;
}

.search-result-item {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--title);
  font-weight: 500;
  transition: background .2s;
}

.search-result-item:hover {
  background: var(--soft);
  color: var(--brand);
}

/* ========== 手机底部导航 ========== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(56px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gray);
  z-index: 900;
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  min-height: 48px;
  color: var(--sec);
  font-size: 0.72rem;
  font-weight: 500;
  gap: 2px;
  transition: color .2s;
}

.mobile-bottom-nav a.active {
  color: var(--brand);
}

.mobile-bottom-nav a svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

@media (max-width: 960px) {
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}

/* ========== 通用区块 ========== */
.section {
  padding: 56px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-pink {
  background: var(--bg-pink);
}

.section-gray {
  background: var(--bg-gray);
}

.section-header {
  margin-bottom: 32px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--pale);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--title);
  line-height: 1.3;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 1rem;
  color: var(--sec);
  max-width: 640px;
  line-height: 1.7;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(255,23,101,0.28);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(255,23,101,0.38);
  color: #fff !important;
}

.btn-secondary {
  background: #fff;
  color: var(--brand);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  background: var(--soft);
  border-color: var(--brand);
}

.btn-ghost {
  color: var(--brand);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--soft);
}

/* 卡片 */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-gray);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.card:hover {
  box-shadow: var(--shadow);
}

.card-pink {
  border-color: var(--border);
}

/* 标签 */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--pale);
  color: var(--brand);
}

.tag-gray {
  background: var(--bg-gray);
  color: var(--sec);
}

/* ========== 首页首屏 ========== */
.hero {
  padding: 40px 0 48px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-pink);
  aspect-ratio: 16/10;
  position: relative;
  box-shadow: var(--shadow-pink);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD8E6 0%, #FFF0F5 50%, #FFE4EC 100%);
  color: var(--brand);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.hero-brand {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--title);
  line-height: 1.35;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--sec);
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gray);
  transition: border-color .2s, box-shadow .2s;
}

.hero-list-item:hover {
  border-color: var(--border);
  box-shadow: 0 4px 16px rgba(255,23,101,0.08);
}

.hero-list-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-list-text {
  font-size: 0.92rem;
  color: var(--title);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-visual {
    order: 2;
    aspect-ratio: 16/9;
  }
  .hero-content {
    order: 1;
  }
  .hero-title {
    font-size: 1.55rem;
  }
}

/* 频道快捷条 */
.channel-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-gray);
  background: #fff;
  overflow: hidden;
}

.channel-bar-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

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

.channel-bar a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-gray);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all .2s;
  flex-shrink: 0;
}

.channel-bar a:hover,
.channel-bar a.active {
  background: var(--pale);
  color: var(--brand);
  border-color: var(--border);
}

/* 灵感胶囊 */
.inspire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.inspire-item {
  display: block;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  transition: all .2s;
}

.inspire-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.inspire-name {
  font-weight: 700;
  color: var(--title);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.inspire-desc {
  font-size: 0.85rem;
  color: var(--sec);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .inspire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .inspire-grid {
    grid-template-columns: 1fr;
  }
}

/* 精选主推 */
.featured-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.featured-main-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-pink);
}

.featured-main-type {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 10px;
}

.featured-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 14px;
  line-height: 1.35;
}

.featured-main-text {
  font-size: 0.95rem;
  color: var(--sec);
  line-height: 1.75;
  margin-bottom: 16px;
}

.featured-main-reason {
  font-size: 0.9rem;
  color: var(--text);
  background: var(--soft);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.featured-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-side-item {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  transition: all .2s;
}

.featured-side-item:hover {
  border-color: var(--border);
  box-shadow: 0 6px 20px rgba(255,23,101,0.08);
}

.featured-side-type {
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 4px;
}

.featured-side-title {
  font-weight: 600;
  color: var(--title);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .featured-main {
    grid-template-columns: 1fr;
  }
}

/* 横向轨道 */
.track-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.track-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .2s;
}

.track-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.track-card-title {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
  font-size: 1rem;
}

.track-card-desc {
  font-size: 0.85rem;
  color: var(--sec);
  line-height: 1.55;
}

/* 电影宽幅 */
.movie-wide {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray);
  padding: 36px;
  margin-bottom: 24px;
}

.movie-wide-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 14px;
}

.movie-wide-text {
  font-size: 0.98rem;
  color: var(--sec);
  line-height: 1.8;
  margin-bottom: 20px;
}

.movie-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.movie-type-card {
  display: block;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .2s;
  text-align: center;
}

.movie-type-card:hover {
  border-color: var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.movie-type-name {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 6px;
}

.movie-type-desc {
  font-size: 0.82rem;
  color: var(--sec);
}

@media (max-width: 700px) {
  .movie-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 短片编号 */
.shorts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shorts-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  transition: all .2s;
}

.shorts-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.shorts-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pale);
  line-height: 1;
  min-width: 40px;
}

.shorts-item:hover .shorts-num {
  color: var(--brand);
}

.shorts-title {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 6px;
}

.shorts-desc {
  font-size: 0.85rem;
  color: var(--sec);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .shorts-list {
    grid-template-columns: 1fr;
  }
}

/* 综艺卡片 */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.variety-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
}

.variety-card:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-3px);
}

.variety-card-title {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.variety-card-desc {
  font-size: 0.9rem;
  color: var(--sec);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .variety-grid {
    grid-template-columns: 1fr;
  }
}

/* 人物职业 */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.people-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .2s;
}

.people-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.people-role {
  font-weight: 800;
  color: var(--title);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.people-note {
  font-size: 0.88rem;
  color: var(--sec);
  line-height: 1.55;
}

@media (max-width: 700px) {
  .people-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 片单网格 */
.watchlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.watchlist-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all .2s;
  min-height: 140px;
}

.watchlist-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}

.watchlist-name {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.watchlist-desc {
  font-size: 0.85rem;
  color: var(--sec);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .watchlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 榜单编号 */
.rank-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rank-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  transition: all .2s;
}

.rank-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.rank-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  opacity: 0.85;
  min-width: 42px;
}

.rank-title {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 6px;
}

.rank-desc {
  font-size: 0.88rem;
  color: var(--sec);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .rank-list {
    grid-template-columns: 1fr;
  }
}

/* 日历轨道 */
.calendar-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.calendar-item {
  flex: 0 0 200px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 20px;
}

.calendar-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-gray);
  color: var(--sec);
  margin-bottom: 10px;
}

.calendar-status.done {
  background: var(--pale);
  color: var(--brand);
}

.calendar-title {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 6px;
}

.calendar-desc {
  font-size: 0.85rem;
  color: var(--sec);
}

/* 幕后杂志 */
.studio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.studio-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .2s;
}

.studio-card:hover {
  box-shadow: var(--shadow);
}

.studio-card.tall {
  grid-row: span 2;
}

.studio-card-title {
  font-weight: 800;
  color: var(--title);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.studio-card-text {
  font-size: 0.92rem;
  color: var(--sec);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .studio-grid {
    grid-template-columns: 1fr;
  }
  .studio-card.tall {
    grid-row: auto;
  }
}

/* 影评列表 */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-item {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all .2s;
}

.review-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.review-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 8px;
}

.review-title {
  font-weight: 700;
  color: var(--title);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-excerpt {
  font-size: 0.92rem;
  color: var(--sec);
  line-height: 1.7;
}

/* 发现索引 */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.discover-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all .2s;
}

.discover-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.discover-name {
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.discover-desc {
  font-size: 0.88rem;
  color: var(--sec);
  line-height: 1.55;
}

@media (max-width: 800px) {
  .discover-grid {
    grid-template-columns: 1fr;
  }
}

/* APP区块 */
.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.app-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-pink);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-pink);
}

.app-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-visual-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FFD8E6, #FFF0F5);
  color: var(--brand);
  font-weight: 800;
  font-size: 1.5rem;
  gap: 8px;
}

.app-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 16px;
}

.app-content p {
  font-size: 0.98rem;
  color: var(--sec);
  line-height: 1.8;
  margin-bottom: 24px;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .app-section {
    grid-template-columns: 1fr;
  }
}

/* 双栏信息 */
.info-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-block {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 28px;
}

.info-block h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 14px;
}

.info-block p {
  font-size: 0.95rem;
  color: var(--sec);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .info-dual {
    grid-template-columns: 1fr;
  }
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--title);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--brand);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--sec);
  line-height: 1.7;
}

/* 品牌宣言 */
.brand-statement {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 64px 0;
  text-align: center;
}

.brand-statement h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 20px;
}

.brand-statement p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--sec);
  line-height: 1.85;
}

/* 内页通用头部 */
.page-hero {
  padding: 48px 0 36px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 14px;
  line-height: 1.3;
}

.page-hero .lead {
  font-size: 1.05rem;
  color: var(--sec);
  max-width: 680px;
  line-height: 1.75;
}

/* 内容正文 */
.content-body {
  padding: 40px 0 64px;
}

.content-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--title);
  margin: 36px 0 16px;
}

.content-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--title);
  margin: 28px 0 12px;
}

.content-body p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-body ul {
  margin: 12px 0 20px 20px;
}

.content-body li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.7;
}

.content-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.content-body a {
  color: var(--brand);
  font-weight: 500;
}

/* 网格通用 */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* 内页卡片 */
.inner-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
}

.inner-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.inner-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
}

.inner-card p {
  font-size: 0.9rem;
  color: var(--sec);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ========== 页脚 ========== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 32px;
  margin-top: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand-en {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-left: 8px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color .2s;
}

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

.footer-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* 工具类 */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* focus-visible */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* 防止横向滚动 */
body, html {
  max-width: 100vw;
  overflow-x: hidden;
}

/* 主内容区域 */
main {
  min-height: 50vh;
}

/* 图片占位 */
.img-placeholder {
  background: linear-gradient(135deg, #FFD8E6 0%, #FFF0F5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 700;
  border-radius: inherit;
}