/* 蘑菇视频 MOGU VIDEO - 官方网站样式 */
/* 全局重置与基础 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  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: #444444;
  background-color: #FFFFFF;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: #E90052;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #C90046;
}

a:focus-visible {
  outline: 2px solid #FF1765;
  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: #222222;
  font-weight: 700;
  line-height: 1.35;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.65rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }
}

/* 顶部导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(255, 23, 101, 0.12);
  box-shadow: 0 4px 20px rgba(30, 20, 25, 0.04);
}

.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: #222222;
  font-weight: 700;
  font-size: 1.25rem;
}

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

.brand-logo span {
  color: #FF1765;
}

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

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.95rem;
  color: #333333;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.desktop-nav a:hover {
  background: #FFF0F5;
  color: #E90052;
}

.desktop-nav a.active {
  background: #FFF0F5;
  color: #FF1765;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 #FF1765;
}

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

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 22px;
  font-size: 0.9rem;
  color: #333;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.2s;
}

.nav-icon-btn:hover {
  background: #FFF0F5;
  border-color: rgba(255,23,101,0.25);
  color: #E90052;
}

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

.btn-app:hover {
  opacity: 0.92;
  color: #FFFFFF !important;
  box-shadow: 0 10px 28px rgba(255, 23, 101, 0.35);
}

/* 手机顶部 */
.mobile-nav-toggle,
.mobile-only {
  display: none;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #333;
    font-size: 1.4rem;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .nav-left {
    gap: 12px;
  }
  .nav-right .nav-icon-btn.desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline-flex;
  }
  .nav-inner {
    padding: 0 12px;
  }
  .brand-logo span {
    font-size: 1.1rem;
  }
}

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

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

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

.channel-quick a {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 0.88rem;
  color: #555;
  background: #F7F7F8;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.2s;
}

.channel-quick a:hover,
.channel-quick a.active {
  background: #FFF0F5;
  border-color: rgba(255,23,101,0.3);
  color: #E90052;
}

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

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

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

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

@media (max-width: 520px) {
  .channel-panel {
    max-width: 88%;
  }
}

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

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

.panel-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  color: #666;
  border: 1px solid rgba(0,0,0,0.08);
}

.panel-close:hover {
  background: #FFF0F5;
  color: #E90052;
}

.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: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  padding-left: 4px;
}

.panel-link {
  display: block;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: #FFF7FA;
  border: 1px solid rgba(255,23,101,0.08);
  transition: all 0.2s;
}

.panel-link:hover {
  background: #FFF0F5;
  border-color: rgba(255,23,101,0.25);
}

.panel-link strong {
  display: block;
  color: #222;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.panel-link span {
  display: block;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.45;
}

/* 搜索面板 */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 15, 0.4);
  z-index: 1900;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

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

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 1901;
  padding: 24px 20px 32px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(30,20,25,0.1);
  max-height: 90vh;
  overflow-y: auto;
}

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

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

.search-panel-inner {
  max-width: 800px;
  margin: 0 auto;
}

.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: 2px solid rgba(255,23,101,0.2);
  border-radius: 26px;
  font-size: 1rem;
  background: #FFF7FA;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: #FF1765;
  background: #FFFFFF;
}

.search-input::placeholder {
  color: #999;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #FF1765;
  font-size: 1.2rem;
  pointer-events: none;
}

.search-close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.4rem;
  color: #666;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.search-close:hover {
  background: #FFF0F5;
  color: #E90052;
}

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

.search-tag {
  padding: 8px 16px;
  background: #F7F7F8;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  font-size: 0.88rem;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.search-tag:hover {
  background: #FFF0F5;
  border-color: rgba(255,23,101,0.3);
  color: #E90052;
}

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

.search-links a {
  display: block;
  padding: 12px 16px;
  background: #FFF7FA;
  border-radius: 12px;
  color: #333;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.search-links a:hover {
  border-color: rgba(255,23,101,0.25);
  color: #E90052;
}

/* 手机底部导航 */
.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: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,0.08);
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(30,20,25,0.06);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 56px;
  font-size: 0.72rem;
  color: #777;
  gap: 2px;
  min-width: 0;
}

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

.mobile-bottom-nav a.active {
  color: #FF1765;
  font-weight: 600;
}

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

/* 按钮通用 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  opacity: 0.93;
  box-shadow: 0 12px 32px rgba(255, 23, 101, 0.36);
  color: #FFFFFF !important;
}

.btn-secondary {
  color: #E90052;
  background: #FFF0F5;
  border: 1px solid rgba(255,23,101,0.25);
}

.btn-secondary:hover {
  background: #FFD8E6;
  color: #C90046;
}

.btn-outline {
  color: #333;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
}

.btn-outline:hover {
  background: #FFF7FA;
  border-color: rgba(255,23,101,0.3);
  color: #E90052;
}

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

.card:hover {
  box-shadow: 0 14px 40px rgba(30,20,25,0.08);
}

.card-soft {
  background: #FFF7FA;
  border: 1px solid rgba(255,23,101,0.1);
  border-radius: 16px;
}

.card-pink {
  background: #FFF0F5;
  border: 1px solid rgba(255,23,101,0.15);
  border-radius: 16px;
}

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

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

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

.hero-visual {
  border-radius: 20px;
  overflow: hidden;
  background: #FFF0F5;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 16px 42px rgba(255, 23, 101, 0.12);
}

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

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFD8E6 0%, #FFF0F5 50%, #FFE4EE 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #E90052;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 8px;
}

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

.hero-brand {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF1765;
  letter-spacing: 0.06em;
}

.hero-title {
  font-size: 1.85rem;
  color: #222;
  line-height: 1.3;
  margin: 0;
}

.hero-desc {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

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

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

.hero-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.hero-list-item .num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #FFF0F5;
  color: #E90052;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-list-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

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

.section-alt {
  background: #FFF7FA;
}

.section-soft {
  background: #F7F7F8;
}

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

.section-header h2 {
  margin: 0;
}

.section-more {
  font-size: 0.9rem;
  color: #E90052;
  font-weight: 500;
}

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

/* 胶囊主题 */
.theme-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.theme-capsule {
  display: inline-flex;
  flex-direction: column;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(255,23,101,0.12);
  border-radius: 16px;
  max-width: 220px;
  transition: all 0.2s;
}

.theme-capsule:hover {
  border-color: rgba(255,23,101,0.35);
  box-shadow: 0 8px 24px rgba(255,23,101,0.1);
}

.theme-capsule strong {
  color: #222;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.theme-capsule span {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
}

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

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

.featured-cover {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #FFF0F5;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 12px;
  background: #FFF0F5;
  color: #E90052;
}

.featured-info h3 {
  font-size: 1.45rem;
  margin: 0;
}

.featured-info .reason {
  font-size: 0.92rem;
  color: #555;
  background: #FFF7FA;
  padding: 12px 16px;
  border-radius: 12px;
  border-left: 3px solid #FF1765;
}

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

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

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

.featured-item {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 16px;
  transition: box-shadow 0.2s;
}

.featured-item:hover {
  box-shadow: 0 10px 28px rgba(30,20,25,0.08);
}

.featured-item .type {
  font-size: 0.75rem;
  color: #FF1765;
  font-weight: 600;
  margin-bottom: 6px;
}

.featured-item h4 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.featured-item p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

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

.track-card {
  flex: 0 0 200px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px 16px;
  transition: box-shadow 0.2s;
}

.track-card:hover {
  box-shadow: 0 10px 28px rgba(30,20,25,0.08);
}

.track-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.track-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* 电影墙 */
.movie-wall {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

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

.movie-main {
  background: #FFF7FA;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255,23,101,0.1);
}

.movie-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.movie-type {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s;
}

.movie-type:hover {
  border-color: rgba(255,23,101,0.3);
  background: #FFF7FA;
}

.movie-type strong {
  display: block;
  color: #222;
  margin-bottom: 4px;
}

.movie-type span {
  font-size: 0.85rem;
  color: #666;
}

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

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

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

.short-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  transition: box-shadow 0.2s;
}

.short-item:hover {
  box-shadow: 0 10px 28px rgba(30,20,25,0.08);
}

.short-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF4A86, #E90052);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.short-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.short-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

/* 综艺 */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.variety-card {
  background: #FFFFFF;
  border: 1px solid rgba(255,23,101,0.12);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s;
}

.variety-card:hover {
  border-color: rgba(255,23,101,0.35);
  box-shadow: 0 10px 28px rgba(255,23,101,0.1);
}

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

.people-card {
  text-align: center;
  padding: 24px 16px;
  background: #FFF7FA;
  border-radius: 16px;
  border: 1px solid rgba(255,23,101,0.1);
}

.people-card .role {
  font-size: 0.85rem;
  color: #FF1765;
  font-weight: 600;
  margin-bottom: 8px;
}

.people-card h4 {
  margin-bottom: 6px;
}

.people-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

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

.watchlist-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 22px;
  transition: box-shadow 0.2s;
}

.watchlist-card:hover {
  box-shadow: 0 12px 32px rgba(30,20,25,0.08);
}

.watchlist-card .icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* 榜单 */
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rank-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
}

.rank-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #FFF0F5;
  color: #E90052;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rank-item:nth-child(1) .rank-num,
.rank-item:nth-child(2) .rank-num,
.rank-item:nth-child(3) .rank-num {
  background: linear-gradient(135deg, #FF4A86, #E90052);
  color: #fff;
}

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

.calendar-item {
  flex: 0 0 200px;
  padding: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
}

.calendar-item .status {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
  background: #F7F7F8;
  color: #666;
  margin-bottom: 10px;
}

.calendar-item .status.done {
  background: #E8F8EF;
  color: #1a7a45;
}

.calendar-item .status.plan {
  background: #FFF0F5;
  color: #E90052;
}

/* 幕后杂志式 */
.studio-asymmetric {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

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

.studio-block {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}

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

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

.review-item {
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
}

.review-item .editor-tag {
  font-size: 0.78rem;
  color: #FF1765;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-item h3 {
  margin-bottom: 10px;
}

.review-item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

/* 发现专题 */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.discover-card {
  padding: 24px;
  background: #FFF7FA;
  border-radius: 16px;
  border: 1px solid rgba(255,23,101,0.1);
}

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

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

.app-visual {
  border-radius: 24px;
  overflow: hidden;
  background: #FFF0F5;
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(255,23,101,0.15);
}

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

.app-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #FFD8E6, #FFF0F5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #E90052;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 10px;
}

/* 页面内通用内容区 */
.page-hero {
  padding: 36px 0 28px;
  background: linear-gradient(180deg, #FFF7FA 0%, #FFFFFF 70%);
}

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

.page-hero .lead {
  font-size: 1.05rem;
  color: #555;
  max-width: 720px;
  line-height: 1.75;
}

.content-block {
  padding: 20px 0 36px;
}

.content-block h2 {
  margin-top: 32px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFF0F5;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  margin-top: 24px;
}

.text-muted {
  color: #777;
}

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

/* FAQ */
.faq-list details {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 4px 18px;
}

.faq-list summary {
  padding: 16px 0;
  font-weight: 600;
  color: #222;
  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.3rem;
  color: #FF1765;
  font-weight: 400;
}

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

.faq-list details p {
  padding-bottom: 16px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 页脚 */
.site-footer {
  background: #171717;
  color: #F4F4F4;
  padding: 48px 0 28px;
  margin-top: 40px;
}

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

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

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

.footer-brand .en {
  font-size: 0.8rem;
  color: #FF8FB0;
  font-weight: 500;
  margin-left: 6px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #B0B0B0;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

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

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

.footer-col a {
  display: block;
  color: #B8B8B8;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #FF8FB0;
}

.footer-note {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

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

/* 工具类 */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.text-center { text-align: center; }

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

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

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

/* 内页内容间距 */
.page-content {
  padding-bottom: 40px;
}

/* 版权/隐私等长文 */
.prose p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

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

.prose ul li {
  margin-bottom: 8px;
  color: #444;
}

.prose ol {
  margin: 12px 0 20px 1.2em;
  list-style: decimal;
}

.prose ol li {
  margin-bottom: 8px;
}

/* 联系表单外观（无实际提交） */
.contact-block {
  background: #FFF7FA;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255,23,101,0.1);
}

.contact-block h3 {
  margin-bottom: 12px;
}

/* 装饰性粉色光晕（轻微） */
.glow-soft {
  position: relative;
}

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

/* 确保主内容在导航下方 */
.site-main {
  position: relative;
  z-index: 1;
}
