/* 蘑菇视频 MOGU 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", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444444;
  background: #FFFFFF;
  overflow-x: hidden;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

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

a {
  color: #E90052;
  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: #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: 2.1rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1em;
}

.container {
  width: 100%;
  max-width: 1280px;
  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);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 23, 101, 0.12);
  height: 72px;
}

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

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #222222;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

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

.logo-text {
  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;
  border-radius: 20px;
  color: #444444;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

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

.desktop-nav a.active {
  color: #FF1765;
  background: #FFF0F5;
  font-weight: 600;
}

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

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #444444;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.icon-btn:hover {
  background: #FFF0F5;
  color: #FF1765;
}

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

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  min-height: 44px;
}

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

.btn-primary:hover {
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(255, 23, 101, 0.35);
  transform: translateY(-1px);
}

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

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

.btn-outline {
  background: transparent;
  color: #FF1765;
  border: 1.5px solid rgba(255, 23, 101, 0.4);
}

.btn-outline:hover {
  background: #FFF0F5;
  border-color: #FF1765;
}

/* 手机端顶部 */
.mobile-header-left,
.mobile-header-center,
.mobile-header-right {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #222222;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  .header-left .logo-link {
    display: none;
  }
  .mobile-header-left,
  .mobile-header-center,
  .mobile-header-right {
    display: flex;
    align-items: center;
  }
  .header-inner {
    justify-content: space-between;
  }
  .header-left {
    flex: 0;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-right .btn-pill {
    display: none;
  }
  .header-right .search-toggle {
    display: none;
  }
  .mobile-header-center .logo-link {
    display: flex;
  }
  .mobile-header-right .btn-pill {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

.channel-panel-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;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(30, 20, 25, 0.12);
  visibility: hidden;
  pointer-events: none;
}

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

.channel-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

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

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

.panel-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #444444;
}

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

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

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

.channel-group-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-left: 4px;
}

.channel-item {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 6px;
  transition: background 0.2s;
}

.channel-item:hover {
  background: #FFF7FA;
}

.channel-item-name {
  display: block;
  font-weight: 600;
  color: #222222;
  font-size: 1rem;
  margin-bottom: 4px;
}

.channel-item:hover .channel-item-name {
  color: #FF1765;
}

.channel-item-desc {
  display: block;
  font-size: 0.85rem;
  color: #777777;
  line-height: 1.5;
}

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

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

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 1200;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 40px rgba(30, 20, 25, 0.1);
  visibility: hidden;
  pointer-events: none;
  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: 900px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

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

.search-input-wrap {
  display: flex;
  align-items: center;
  background: #F7F7F8;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 4px 8px 4px 18px;
  margin-bottom: 28px;
}

.search-input-wrap:focus-within {
  border-color: rgba(255, 23, 101, 0.4);
  background: #FFF7FA;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  padding: 14px 0;
  color: #222222;
  outline: none;
}

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

.search-submit-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1765;
}

.search-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #777777;
  margin-bottom: 12px;
}

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

.search-tag {
  display: inline-flex;
  padding: 8px 16px;
  background: #FFF0F5;
  color: #E90052;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

.search-tag:hover {
  background: #FFD8E6;
  color: #C90046;
}

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

.search-link-item {
  display: block;
  padding: 12px 16px;
  background: #F7F7F8;
  border-radius: 12px;
  color: #444444;
  font-size: 0.95rem;
}

.search-link-item:hover {
  background: #FFF0F5;
  color: #FF1765;
}

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

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 56px;
  color: #777777;
  font-size: 0.7rem;
  font-weight: 500;
  gap: 2px;
}

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

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

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

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

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

.page-hero .container {
  max-width: 900px;
}

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

.page-hero .lead {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 0;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #FFF7FA;
}

.section-soft {
  background: #F7F7F8;
}

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

.section-desc {
  color: #777777;
  margin-bottom: 32px;
  max-width: 720px;
}

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

.section-header .more-link {
  font-weight: 600;
  color: #FF1765;
  white-space: nowrap;
}

/* 卡片通用 */
.card {
  background: #FFFFFF;
  border-radius: 18px;
  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-color: rgba(255, 23, 101, 0.1);
}

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

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #FFF0F5;
  color: #E90052;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #222222;
}

.card-text {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

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

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

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

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

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

/* 胶囊标签 */
.capsule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capsule {
  display: inline-flex;
  flex-direction: column;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  min-width: 140px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.capsule-name {
  font-weight: 600;
  color: #222222;
  margin-bottom: 4px;
}

.capsule-desc {
  font-size: 0.85rem;
  color: #777777;
  line-height: 1.45;
}

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

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

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

.channel-quick a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #F7F7F8;
  color: #444444;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  flex-shrink: 0;
}

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

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

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

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  background: #FFF0F5;
  aspect-ratio: 16 / 10;
  position: relative;
}

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

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD8E6 0%, #FFF0F5 50%, #FFE4EC 100%);
  color: #E90052;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.hero-brand {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FF1765;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

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

.hero-desc {
  color: #555555;
  margin-bottom: 24px;
  line-height: 1.75;
}

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

.hero-reco {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.hero-reco-text {
  font-size: 0.92rem;
  color: #444444;
  line-height: 1.5;
}

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

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

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

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

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

.inspiration-item:hover {
  border-color: rgba(255, 23, 101, 0.25);
  box-shadow: 0 10px 28px rgba(255, 23, 101, 0.08);
}

.inspiration-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #222222;
}

.inspiration-item p {
  font-size: 0.88rem;
  color: #777777;
  margin: 0;
  line-height: 1.5;
}

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

.featured-main-card {
  background: linear-gradient(145deg, #FFF7FA 0%, #FFFFFF 100%);
  border: 1px solid rgba(255, 23, 101, 0.12);
  border-radius: 22px;
  padding: 32px;
}

.featured-main-card .card-tag {
  margin-bottom: 14px;
}

.featured-main-card h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.featured-main-card .intro {
  color: #555555;
  margin-bottom: 16px;
  line-height: 1.75;
}

.featured-main-card .reason {
  font-size: 0.95rem;
  color: #777777;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  margin-bottom: 20px;
}

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

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

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

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

.featured-side-item h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.featured-side-item p {
  font-size: 0.88rem;
  color: #777777;
  margin: 0;
}

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

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

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

.track-item:hover {
  border-color: rgba(255, 23, 101, 0.25);
  box-shadow: 0 10px 28px rgba(255, 23, 101, 0.08);
}

.track-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.track-item p {
  font-size: 0.88rem;
  color: #777777;
  margin: 0;
  line-height: 1.5;
}

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

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

.shorts-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

.shorts-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FF1765;
  line-height: 1;
  flex-shrink: 0;
}

.shorts-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.shorts-item p {
  font-size: 0.9rem;
  color: #777777;
  margin: 0;
}

/* 榜单编号 */
.rank-list {
  display: grid;
  gap: 14px;
}

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

.rank-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FF1765;
  line-height: 1;
  min-width: 40px;
}

.rank-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.rank-item p {
  font-size: 0.92rem;
  color: #666666;
  margin: 0;
}

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

.calendar-card {
  flex: 0 0 240px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 20px;
}

.calendar-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.status-published {
  background: #E8F8EF;
  color: #1A7A45;
}

.status-preparing {
  background: #FFF0F5;
  color: #E90052;
}

.status-pending {
  background: #F7F7F8;
  color: #777777;
}

.calendar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.calendar-card p {
  font-size: 0.88rem;
  color: #777777;
  margin: 0;
}

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

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

.review-item .editor-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #FFF0F5;
  color: #E90052;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 10px;
}

.review-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-item p {
  color: #555555;
  margin-bottom: 0;
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: #FF1765;
  font-weight: 400;
}

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

.faq-item .faq-answer {
  padding: 0 22px 20px;
  color: #555555;
  line-height: 1.7;
}

/* 文章正文 */
.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin-top: 2em;
  margin-bottom: 0.8em;
}

.article-body h3 {
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.article-body p {
  margin-bottom: 1.15em;
  line-height: 1.8;
}

.article-body ul {
  margin: 0 0 1.2em 1.2em;
  list-style: disc;
}

.article-body li {
  margin-bottom: 0.5em;
  color: #444444;
}

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

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

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

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

.footer-brand-en {
  font-size: 0.85rem;
  color: #AAAAAA;
  letter-spacing: 0.08em;
  margin-left: 8px;
}

.footer-intro {
  color: #AAAAAA;
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #BBBBBB;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

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

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

.footer-copy {
  font-size: 0.85rem;
  color: #777777;
}

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

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

/* 工具类 */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.prose-wide {
  max-width: 860px;
}

.prose-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

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

.soft-box p:last-child {
  margin-bottom: 0;
}

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .two-col-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

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

.magazine-block {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.magazine-block.accent {
  background: #FFF7FA;
  border-color: rgba(255, 23, 101, 0.12);
}

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

.app-visual {
  border-radius: 24px;
  overflow: hidden;
  background: #FFF0F5;
  aspect-ratio: 1 / 1;
  max-width: 420px;
}

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

.app-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FFD8E6, #FFF0F5);
  color: #E90052;
  font-size: 1.3rem;
  font-weight: 700;
}

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

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

/* 焦点可见 */
:focus-visible {
  outline: 2px solid #FF1765;
  outline-offset: 3px;
}

/* 确保按钮可点区域 */
.btn-pill,
.icon-btn,
.menu-toggle,
.panel-close,
.mobile-bottom-nav a {
  min-height: 44px;
  min-width: 44px;
}
