/* 蘑菇视频 MOGU VIDEO - 官方样式 */
:root {
  --bg-main: #FFFFFF;
  --bg-secondary: #FFF7FA;
  --bg-soft: #FFF0F5;
  --bg-gray: #F7F7F8;
  --text-title: #222222;
  --text-body: #444444;
  --text-secondary: #777777;
  --text-assist: #999999;
  --brand: #FF1765;
  --brand-light: #FF3D7D;
  --brand-rose: #E90052;
  --brand-deep: #C90046;
  --pink-light: #FFD8E6;
  --pink-soft: #FFF0F5;
  --border-brand: 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);
  --footer-bg: #171717;
  --footer-text: #F4F4F4;
  --nav-height: 72px;
  --max-width: 1280px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

*, *::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;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-main);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
  color: var(--brand);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.65rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
}

/* 顶部导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gray);
  height: var(--nav-height);
}

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

.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;
}

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

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

.desktop-nav a {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-title);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--brand);
  background: var(--pink-soft);
}

.desktop-nav a.active {
  font-weight: 600;
}

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

.nav-icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-title);
  background: transparent;
}

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

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

.btn-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  min-height: 44px;
  box-shadow: 0 4px 16px rgba(255,23,101,0.25);
}

.btn-app:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,23,101,0.35);
  color: #fff !important;
}

.mobile-menu-btn,
.mobile-logo,
.mobile-app-btn {
  display: none;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  .nav-right .nav-icon-btn.search-btn,
  .nav-right .nav-icon-btn.watchlist-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--text-title);
  }
  .mobile-menu-btn svg {
    width: 24px;
    height: 24px;
  }
  .logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-left {
    flex: 0;
  }
  .nav-right {
    margin-left: auto;
  }
  .btn-app {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

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

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

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

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

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

.panel-header .logo-link img {
  height: 32px;
}

.panel-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
}

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

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

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

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

.panel-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 4px;
  transition: background 0.2s;
}

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

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

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

/* 搜索面板 */
.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1900;
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.search-panel.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.search-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

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

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

.search-input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  background: var(--bg-gray);
  color: var(--text-title);
  outline: none;
  transition: border-color 0.2s;
}

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

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

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

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

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

.search-tag {
  padding: 8px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--text-title);
  border: 1px solid var(--border-brand);
}

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

.search-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.search-links a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--bg-gray);
}

.search-links a:hover {
  background: var(--pink-soft);
  color: var(--brand);
}

@media (max-width: 640px) {
  .search-panel {
    top: 0;
    bottom: 0;
    height: 100%;
    border-bottom: none;
  }
  .search-inner {
    padding: 16px;
  }
}

/* 主内容区 */
.main-content {
  padding-top: 0;
  min-height: 60vh;
}

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

.channel-quick-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.channel-quick-inner::-webkit-scrollbar {
  display: none;
}

.channel-quick a {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-pill);
  background: #fff;
  white-space: nowrap;
}

.channel-quick a:hover,
.channel-quick a.active {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--pink-soft);
}

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

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

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

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

.section-title {
  margin-bottom: 8px;
}

.section-desc {
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 640px;
}

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

.section-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand);
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  min-height: 44px;
  transition: all 0.2s ease;
  text-align: center;
}

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

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255,23,101,0.35);
  color: #fff !important;
}

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

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

.btn-ghost {
  background: var(--bg-soft);
  color: var(--text-title) !important;
}

.btn-ghost:hover {
  background: var(--pink-light);
  color: var(--brand) !important;
}

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

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

.card-soft {
  background: var(--bg-soft);
  border-color: var(--border-brand);
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--pink-soft);
  color: var(--brand);
  margin-bottom: 8px;
}

/* 首页首屏 */
.hero {
  padding: 40px 0 32px;
  background: linear-gradient(180deg, #FFF7FA 0%, #FFFFFF 100%);
}

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

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

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

.hero-placeholder {
  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: 1.4rem;
  font-weight: 700;
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

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

.hero-title {
  font-size: 1.85rem;
  line-height: 1.35;
  margin-bottom: 4px;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-rec-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-rec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  font-size: 0.9rem;
}

.hero-rec-item:hover {
  border-color: var(--brand);
  background: var(--pink-soft);
}

.hero-rec-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* 灵感胶囊 */
.inspire-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inspire-item {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  min-width: 140px;
  flex: 1 1 140px;
  max-width: 220px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.inspire-item:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-pink);
}

.inspire-name {
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.inspire-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 今日精选结构 */
.featured-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.featured-lead {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray);
  padding: 28px;
  box-shadow: var(--shadow);
}

.featured-lead .tag {
  margin-bottom: 12px;
}

.featured-lead h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

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

.featured-side-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.featured-side-item:hover {
  border-color: var(--brand);
}

.featured-side-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  min-width: 28px;
}

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

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

.track-item {
  flex: 0 0 200px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 18px;
  transition: box-shadow 0.2s;
}

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

.track-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.track-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* 网格 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.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: repeat(2, 1fr); }
}

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

/* 编号列表 */
.num-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.num-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 14px;
}

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

.num-badge {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  min-width: 36px;
}

/* 片单 */
.watchlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.watchlist-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.watchlist-card:hover {
  box-shadow: var(--shadow-pink);
  border-color: var(--border-brand);
}

/* 时间轨道 */
.timeline {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.timeline-item {
  flex: 0 0 180px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.timeline-status {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--brand);
  margin-bottom: 10px;
}

/* 杂志式 */
.magazine {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

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

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

/* 影评卡片 */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 22px;
}

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

/* FAQ */
.faq-list details {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 4px 18px;
}

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

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

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

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

.faq-list details p {
  padding-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

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

.footer-brand img {
  height: 32px;
}

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

.footer-brand-en {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

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

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

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

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  padding: 5px 0;
}

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

.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.08);
  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: repeat(2, 1fr);
  }
}

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

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

.mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  min-width: 56px;
  min-height: 48px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.mobile-bottom-nav a svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }
  .main-content {
    padding-bottom: 70px;
  }
  .site-footer {
    padding-bottom: 80px;
  }
}

/* 页面头部通用 */
.page-hero {
  padding: 40px 0 28px;
  background: linear-gradient(180deg, #FFF7FA 0%, #FFFFFF 80%);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero-desc {
  color: var(--text-secondary);
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.content-block {
  padding: 32px 0;
}

.content-block p {
  max-width: 720px;
}

.prose {
  max-width: 720px;
}

.prose p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.9rem;
}

.prose h3 {
  margin-top: 1.5rem;
}

/* 工具类 */
.text-brand { color: var(--brand); }
.text-secondary { color: var(--text-secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

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

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

/* body lock when panel open */
body.panel-open {
  overflow: hidden;
}

/* 装饰光晕 */
.glow {
  position: relative;
}

.glow::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,23,101,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* 竖版短片 */
.shorts-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.shorts-item {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}

.shorts-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 8px;
}

/* 人物职业 */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.people-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}

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

.people-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* 关于页品牌宣言 */
.manifesto {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF7FA 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-brand);
}

.manifesto p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}

/* APP 产品介绍 */
.app-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.app-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 9/16;
  max-height: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-pink);
}

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

.app-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FFD8E6, #FFF0F5);
  color: var(--brand);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  padding: 20px;
}

@media (max-width: 800px) {
  .app-hero {
    grid-template-columns: 1fr;
  }
  .app-visual {
    max-height: 360px;
    aspect-ratio: 3/4;
  }
}

/* 版权与分级双栏 */
.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

/* 额外间距保护 */
.pb-safe {
  padding-bottom: env(safe-area-inset-bottom);
}
