/* 蜜桃视频 MITAO VIDEO - 全站样式 */
*,
*::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", Helvetica, Arial, sans-serif;
  background: #FFF5F8;
  color: #3D2A32;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: #FF6B9D;
  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: #FF8FAB;
}

a:focus-visible {
  outline: 2px solid #FF6B9D;
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #2D1B24;
  font-weight: 700;
  line-height: 1.35;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: #3D2A32;
}

/* 布局容器 */
.container {
  width: 100%;
  max-width: 1280px;
  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 rgba(255, 107, 157, 0.15);
  height: 72px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.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;
  text-decoration: none;
  color: #2D1B24;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.brand-logo span {
  white-space: nowrap;
}

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

.desktop-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #3D2A32;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.desktop-nav a:hover {
  background: #FFE4EC;
  color: #FF6B9D;
}

.desktop-nav a.active {
  background: #FFE4EC;
  color: #FF6B9D;
  box-shadow: inset 0 -2px 0 #FF6B9D;
}

.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: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF6B9D;
  border: 1px solid rgba(255, 107, 157, 0.4);
  background: transparent;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: #FFE4EC;
  border-color: #FF6B9D;
}

.nav-btn-primary {
  background: linear-gradient(135deg, #FF8FAB 0%, #FF6B9D 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(255, 107, 157, 0.3);
}

.nav-btn-primary:hover {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(255, 107, 157, 0.4);
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #2D1B24;
  font-size: 1.4rem;
  border-radius: 10px;
}

.menu-toggle:hover {
  background: #FFE4EC;
}

/* 手机端导航 */
@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-right .nav-btn:not(.nav-btn-primary) {
    display: none;
  }
  .nav-left {
    gap: 12px;
  }
  .nav-inner {
    padding: 0 12px;
  }
}

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

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

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

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

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 107, 157, 0.15);
  flex-shrink: 0;
}

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

.panel-close {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #6B4E58;
  font-size: 1.5rem;
}

.panel-close:hover {
  background: #FFE4EC;
  color: #FF6B9D;
}

.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: #9A7A85;
  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: 6px;
  transition: background 0.2s;
}

.panel-link:hover {
  background: #FFF0F5;
}

.panel-link-name {
  font-weight: 600;
  color: #2D1B24;
  font-size: 1rem;
  margin-bottom: 2px;
}

.panel-link-desc {
  font-size: 0.82rem;
  color: #6B4E58;
  line-height: 1.45;
}

/* ========== 搜索面板 ========== */
.search-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 1050;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  border-bottom: 1px solid rgba(255, 107, 157, 0.15);
  box-shadow: 0 12px 36px rgba(255, 107, 157, 0.12);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

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

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

.search-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 20px 36px;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.search-header h2 {
  font-size: 1.25rem;
  margin: 0;
}

.search-close {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #6B4E58;
  font-size: 1.4rem;
}

.search-close:hover {
  background: #FFE4EC;
  color: #FF6B9D;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  padding: 14px 48px 14px 18px;
  border: 1.5px solid rgba(255, 107, 157, 0.35);
  border-radius: 14px;
  font-size: 1rem;
  background: #FFF5F8;
  color: #2D1B24;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  border-color: #FF6B9D;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.15);
}

.search-input::placeholder {
  color: #9A7A85;
}

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

.search-section h3 {
  font-size: 0.9rem;
  color: #6B4E58;
  margin-bottom: 10px;
}

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

.search-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #FFF0F5;
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 999px;
  color: #3D2A32;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.search-tag:hover {
  background: #FFE4EC;
  border-color: #FF6B9D;
  color: #FF6B9D;
}

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

.search-result-item {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 4px;
}

.search-result-item:hover {
  background: #FFF0F5;
}

.search-result-item strong {
  color: #2D1B24;
}

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

.mobile-bottom-nav ul {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-around;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 48px;
  color: #6B4E58;
  font-size: 0.72rem;
  font-weight: 500;
  gap: 2px;
}

.mobile-bottom-nav a.active {
  color: #FF6B9D;
}

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

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

/* ========== 主内容区 ========== */
main {
  min-height: 60vh;
}

.page-hero {
  padding: 48px 0 36px;
  background: linear-gradient(180deg, #FFEBF1 0%, #FFF5F8 100%);
}

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

.page-hero .lead {
  font-size: 1.05rem;
  color: #6B4E58;
  max-width: 640px;
  margin-bottom: 0;
}

/* ========== 首页首屏 ========== */
.hero-section {
  padding: 40px 0 32px;
  background: linear-gradient(165deg, #FFEBF1 0%, #FFF5F8 55%, #FFFFFF 100%);
}

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

.hero-visual {
  border-radius: 18px;
  overflow: hidden;
  background: #FFE4EC;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(255, 107, 157, 0.12);
}

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

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFD6E3 0%, #FFB3C6 50%, #FF8FAB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin-bottom: 14px;
}

.hero-content .brand-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FF6B9D;
  background: #FFE4EC;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.hero-content .intro {
  font-size: 0.98rem;
  color: #3D2A32;
  margin-bottom: 20px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #FF8FAB 0%, #FF6B9D 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(255, 107, 157, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(255, 107, 157, 0.38);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #FF6B9D;
  border: 1.5px solid rgba(255, 107, 157, 0.4);
}

.btn-secondary:hover {
  background: #FFE4EC;
  border-color: #FF6B9D;
  color: #FF6B9D;
}

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

.hero-rec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 157, 0.12);
  font-size: 0.9rem;
  color: #3D2A32;
}

.hero-rec-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B9D;
  margin-top: 6px;
  flex-shrink: 0;
}

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

/* ========== 频道快捷条 ========== */
.channel-bar {
  padding: 18px 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

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

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

.channel-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  background: #FFF0F5;
  border: 1px solid rgba(255, 107, 157, 0.18);
  border-radius: 999px;
  color: #3D2A32;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}

.channel-chip:hover,
.channel-chip.active {
  background: #FFE4EC;
  border-color: #FF6B9D;
  color: #FF6B9D;
}

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

.section-alt {
  background: #FFEBF1;
}

.section-white {
  background: #FFFFFF;
}

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

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

.section-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF6B9D;
}

.section-more:hover {
  color: #FF8FAB;
}

/* 卡片 */
.card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 157, 0.12);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: 0 12px 36px rgba(255, 107, 157, 0.12);
}

.card-body {
  padding: 20px 22px;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF6B9D;
  background: #FFE4EC;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

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

.card-text {
  font-size: 0.92rem;
  color: #6B4E58;
  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-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

/* 主推大卡 */
.feature-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 157, 0.15);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(255, 107, 157, 0.1);
}

.feature-card .feature-visual {
  aspect-ratio: 16 / 9;
  background: #FFE4EC;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-card .feature-body {
  padding: 24px 26px;
}

.feature-card .feature-type {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF6B9D;
  margin-bottom: 6px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-card .feature-desc {
  color: #3D2A32;
  margin-bottom: 14px;
  line-height: 1.75;
}

.feature-meta {
  font-size: 0.88rem;
  color: #6B4E58;
  margin-bottom: 16px;
}

/* 今日灵感胶囊 */
.inspiration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.insp-item {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 107, 157, 0.15);
  border-radius: 14px;
  min-width: 140px;
  max-width: 220px;
  flex: 1 1 160px;
  transition: all 0.2s;
}

.insp-item:hover {
  background: #FFF0F5;
  border-color: rgba(255, 107, 157, 0.35);
  box-shadow: 0 6px 16px rgba(255, 107, 157, 0.1);
}

.insp-item strong {
  color: #2D1B24;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.insp-item span {
  font-size: 0.82rem;
  color: #6B4E58;
  line-height: 1.45;
}

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

.track-scroll::-webkit-scrollbar {
  height: 6px;
}

.track-scroll::-webkit-scrollbar-thumb {
  background: #FFB3C6;
  border-radius: 3px;
}

.track-item {
  flex: 0 0 260px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(255, 107, 157, 0.12);
  padding: 18px;
  transition: box-shadow 0.2s;
}

.track-item:hover {
  box-shadow: 0 10px 28px rgba(255, 107, 157, 0.12);
}

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

.num-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.num-item .num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FF6B9D;
  line-height: 1;
  min-width: 36px;
}

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

.timeline-item {
  flex: 0 0 200px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(255, 107, 157, 0.15);
  padding: 18px;
  text-align: center;
}

.timeline-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: #FFE4EC;
  color: #FF6B9D;
}

.timeline-status.done {
  background: #E8F5E9;
  color: #2E7D32;
}

.timeline-status.pending {
  background: #FFF3E0;
  color: #E65100;
}

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

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

.magazine-block {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 107, 157, 0.12);
}

.magazine-block.tall {
  grid-row: span 2;
}

/* FAQ */
.faq-list details {
  background: #FFFFFF;
  border: 1px solid rgba(255, 107, 157, 0.12);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-list summary {
  padding: 16px 20px;
  font-weight: 600;
  color: #2D1B24;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 1.2rem;
  color: #FF6B9D;
  font-weight: 400;
}

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

.faq-list details p {
  padding: 0 20px 18px;
  color: #3D2A32;
  font-size: 0.95rem;
  margin: 0;
}

/* 片单卡片 */
.collection-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 157, 0.12);
  padding: 22px;
  transition: all 0.2s;
}

.collection-card:hover {
  box-shadow: 0 10px 28px rgba(255, 107, 157, 0.12);
  border-color: rgba(255, 107, 157, 0.3);
}

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

/* 榜单 */
.rank-list {
  counter-reset: rank;
}

.rank-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.rank-item:last-child {
  border-bottom: none;
}

.rank-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FF6B9D;
  min-width: 42px;
  line-height: 1.2;
}

/* ========== 页脚 ========== */
.site-footer {
  background: #2D1B24;
  color: #FFD6E3;
  padding: 56px 0 32px;
  margin-top: 48px;
}

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

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

.footer-brand-text strong {
  display: block;
  font-size: 1.2rem;
  color: #FFFFFF;
}

.footer-brand-text span {
  font-size: 0.85rem;
  color: #FFB3C6;
  letter-spacing: 0.04em;
}

.footer-desc {
  font-size: 0.9rem;
  color: #FFD6E3;
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0.9;
  line-height: 1.65;
}

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

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

.footer-col a {
  display: block;
  color: #FFD6E3;
  font-size: 0.88rem;
  margin-bottom: 8px;
  opacity: 0.85;
}

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

.footer-note {
  font-size: 0.82rem;
  color: #9A7A85;
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 214, 227, 0.15);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: #9A7A85;
}

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

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

/* ========== 内页通用 ========== */
.content-page {
  padding: 40px 0 60px;
}

.content-page .page-intro {
  max-width: 720px;
  margin-bottom: 36px;
  font-size: 1.02rem;
  color: #3D2A32;
  line-height: 1.8;
}

.prose {
  max-width: 780px;
}

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

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

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

.prose ul {
  margin: 0 0 1.2rem 1.2rem;
  list-style: disc;
}

.prose li {
  margin-bottom: 0.5rem;
  color: #3D2A32;
}

/* 辅助类 */
.text-muted {
  color: #6B4E58;
}

.text-sm {
  font-size: 0.88rem;
}

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

/* 减少动画 */
@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;
}

/* 装饰 */
.soft-glow {
  box-shadow: 0 10px 28px rgba(255, 107, 157, 0.18);
}

/* 竖版目录 */
.vertical-catalog {
  display: grid;
  gap: 12px;
}

.v-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(255, 107, 157, 0.12);
}

.v-item .v-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FF6B9D;
  min-width: 36px;
}

/* 海报墙 */
.poster-wall {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .poster-wall {
    grid-template-columns: 1fr;
  }
}

.poster-main {
  background: #FFE4EC;
  border-radius: 16px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poster-side {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(255, 107, 157, 0.12);
  padding: 18px;
}

/* 品牌宣言 */
.brand-manifesto {
  background: linear-gradient(135deg, #FFEBF1 0%, #FFF0F5 100%);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(255, 107, 157, 0.15);
}

.brand-manifesto p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2D1B24;
}

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

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

.app-visual {
  border-radius: 20px;
  overflow: hidden;
  background: #FFE4EC;
  aspect-ratio: 4/5;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(255, 107, 157, 0.2);
}

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

/* 链接列表 */
.link-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 107, 157, 0.08);
  color: #3D2A32;
  font-weight: 500;
}

.link-list a:hover {
  color: #FF6B9D;
}

/* 确保按钮可点击 */
.btn, .nav-btn, .channel-chip, .panel-link, .search-tag {
  position: relative;
  z-index: 1;
}

/* 防止装饰覆盖 */
[class*="pseudo"], .deco {
  pointer-events: none;
}
