/* 蜜桃视频 MITAO VIDEO - 全站样式 */
:root {
  --bg-main: #FFF5F8;
  --bg-deep: #FFEBF1;
  --bg-content: #FFFFFF;
  --bg-secondary: #FFF0F5;
  --bg-hover: #FFE4EC;
  --text-title: #2D1B24;
  --text-body: #3D2A32;
  --text-secondary: #6B4E58;
  --text-assist: #9A7A85;
  --brand: #FF6B9D;
  --brand-light: #FF8FAB;
  --peach: #FFB3C6;
  --peach-light: #FFD6E3;
  --border: rgba(255,107,157,0.15);
  --border-strong: rgba(255,107,157,0.35);
  --shadow: 0 12px 36px rgba(255,107,157,0.12);
  --shadow-pink: 0 10px 28px rgba(255,107,157,0.18);
  --footer-bg: #2D1B24;
  --footer-text: #FFD6E3;
  --nav-height: 72px;
  --max-width: 1280px;
  --radius: 14px;
  --radius-lg: 18px;
  --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;
  background: var(--bg-main);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--brand);
  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-light);
}

a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

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

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

/* ========== 顶部导航 ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 245, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  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;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--text-title);
  font-weight: 700;
  font-size: 1.2rem;
}

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

.brand-logo:hover {
  color: var(--brand);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

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

.desktop-nav a:hover {
  color: var(--brand);
  background: var(--bg-hover);
}

.desktop-nav a.active {
  color: var(--brand);
  background: var(--bg-secondary);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

.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 14px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

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

.nav-btn-app {
  background: linear-gradient(135deg, #FF8FAB 0%, #FF6B9D 100%);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-pink);
  padding: 0 18px;
}

.nav-btn-app:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(255,107,157,0.28);
  color: #FFFFFF !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-title);
  font-size: 1.4rem;
}

/* 手机端导航调整 */
@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-left {
    gap: 12px;
  }
  .nav-btn-text {
    display: none;
  }
  .nav-btn-app {
    padding: 0 14px;
  }
}

@media (max-width: 480px) {
  .brand-logo span {
    font-size: 1.05rem;
  }
}

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

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

.channel-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 88vw);
  height: 100%;
  background: var(--bg-content);
  z-index: 2100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(255,107,157,0.15);
  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: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.panel-header .brand-logo {
  font-size: 1.1rem;
}

.panel-close {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg-secondary);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-close:hover {
  background: var(--bg-hover);
  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: 700;
  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: var(--radius);
  margin-bottom: 6px;
  background: var(--bg-main);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.panel-link:hover {
  background: var(--bg-hover);
  border-color: var(--border);
}

.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-assist);
  line-height: 1.45;
}

/* ========== 搜索面板 ========== */
.search-panel {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-content);
  z-index: 1500;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: all 0.25s ease;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

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

@media (max-width: 768px) {
  .search-panel {
    top: 0;
    bottom: 0;
    height: 100%;
    max-height: 100%;
  }
}

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

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

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

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

.search-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,107,157,0.12);
}

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

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-assist);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-close {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg-secondary);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

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

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

.search-section h3 {
  font-size: 0.9rem;
  color: var(--text-assist);
  margin-bottom: 12px;
  font-weight: 600;
}

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

.search-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

.search-tag:hover {
  background: var(--bg-hover);
  color: var(--brand);
  border-color: var(--border-strong);
}

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

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

.search-result-item {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 6px;
  background: var(--bg-main);
  border: 1px solid var(--border);
}

.search-result-item:hover {
  background: var(--bg-hover);
}

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

/* ========== 手机底部导航 ========== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 20px rgba(255,107,157,0.08);
}

.mobile-bottom-nav ul {
  display: flex;
  height: 56px;
}

.mobile-bottom-nav li {
  flex: 1;
}

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

.mobile-bottom-nav a span.icon {
  font-size: 1.25rem;
  line-height: 1;
}

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

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

/* ========== 按钮通用 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #FF8FAB 0%, #FF6B9D 100%);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 36px rgba(255,107,157,0.3);
  color: #FFFFFF !important;
}

.btn-secondary {
  background: transparent;
  color: var(--brand) !important;
  border: 1.5px solid rgba(255,107,157,0.4);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.2rem;
}

/* ========== 首页首屏 ========== */
.hero {
  padding: 36px 0 48px;
}

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

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

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

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFE4EC 0%, #FFB3C6 50%, #FF8FAB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

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

.hero-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin-bottom: 14px;
  color: var(--text-title);
}

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

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

.hero-rec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-rec-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

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

/* ========== 频道快捷条 ========== */
.channel-bar {
  padding: 12px 0 28px;
  overflow: hidden;
}

.channel-bar-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--peach) transparent;
  -webkit-overflow-scrolling: touch;
}

.channel-bar-inner::-webkit-scrollbar {
  height: 4px;
}

.channel-bar-inner::-webkit-scrollbar-thumb {
  background: var(--peach);
  border-radius: 2px;
}

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

.channel-chip:hover {
  background: var(--bg-hover);
  color: var(--brand);
  border-color: var(--border-strong);
}

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

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

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

.section-header h2 {
  margin-bottom: 0;
}

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

.section-more:hover {
  color: var(--brand-light);
}

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

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

.card-body {
  padding: 20px;
}

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

.card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-title);
}

.card-title a {
  color: inherit;
}

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

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

/* 网格 */
.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: 18px;
}

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

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

/* 主推荐 + 列表 */
.feature-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

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

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

.feature-side-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.feature-side-item:hover {
  background: var(--bg-hover);
}

.feature-side-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  min-width: 28px;
}

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

.inspire-item {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: var(--bg-content);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 280px;
  flex: 1 1 200px;
  transition: all 0.2s;
}

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

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

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

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

.track-item {
  flex: 0 0 220px;
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
  transition: all 0.2s;
}

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

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

.numbered-item {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  align-items: flex-start;
}

.numbered-item .num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
  min-width: 36px;
}

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

.timeline-item {
  flex: 0 0 200px;
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  position: relative;
}

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

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

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

.magazine-block {
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
}

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

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

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

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

.footer-brand-en {
  font-size: 0.8rem;
  color: var(--peach-light);
  letter-spacing: 0.08em;
  margin-left: 4px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--peach-light);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.65;
  opacity: 0.9;
}

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

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

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

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--peach-light);
  font-size: 0.88rem;
  padding: 5px 0;
  opacity: 0.85;
}

.footer-col a:hover {
  color: #fff;
  opacity: 1;
}

.footer-notice {
  font-size: 0.82rem;
  color: var(--peach-light);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,214,227,0.15);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--peach-light);
  opacity: 0.6;
}

/* 内页通用 */
.page-hero {
  padding: 36px 0 20px;
}

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

.page-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.75;
}

.content-block {
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
}

.content-block h2 {
  margin-bottom: 14px;
}

.content-block h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

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

.prose ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

.prose li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

/* FAQ */
.faq-list details {
  background: var(--bg-content);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 16px 20px;
  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: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 图片占位 */
.img-placeholder {
  background: linear-gradient(135deg, #FFE4EC, #FFB3C6);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  aspect-ratio: 16/9;
}

.img-placeholder.square {
  aspect-ratio: 1;
}

.img-placeholder.portrait {
  aspect-ratio: 3/4;
}

/* APP 页特殊 */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

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

.app-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-deep);
  aspect-ratio: 4/5;
  max-width: 360px;
  margin: 0 auto;
}

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

/* 榜单大编号 */
.rank-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rank-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

/* 片单收藏册 */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.collection-card {
  background: var(--bg-content);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px;
  transition: all 0.2s;
}

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

.collection-card h3 {
  margin-bottom: 8px;
}

/* 工具类 */
.text-center { text-align: center; }
.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; }
.text-assist { color: var(--text-assist); }
.text-secondary { color: var(--text-secondary); }

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

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

/* 焦点可见 */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

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