/* 麻豆 MADOU FILMS - 全局样式 */
*,
*::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-color: #000000;
  color: #DDDDDD;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

body.panel-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #F7F7F7;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 1em;
}

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

@media (max-width: 767px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ========== 顶部信息栏 ========== */
.top-bar {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: #A5A5A5;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-left {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-center {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.top-bar-center a {
  color: #A5A5A5;
}

.top-bar-center a:hover {
  color: #FFFFFF;
}

.top-bar-right {
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.top-bar-right a,
.top-bar-right button {
  color: #A5A5A5;
  font-size: 13px;
}

.top-bar-right a:hover,
.top-bar-right button:hover {
  color: #FFFFFF;
}

.search-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 767px) {
  .top-bar {
    height: 32px;
  }
  .top-bar-center,
  .top-bar-right a:not(.mobile-keep),
  .top-bar-right .hide-mobile {
    display: none;
  }
  .top-bar-left {
    font-size: 12px;
  }
  .top-bar-right {
    gap: 12px;
  }
}

/* ========== 品牌导航 ========== */
.brand-nav {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 90;
  height: 64px;
}

.brand-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.brand-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #F7F7F7;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: #1A1A1A;
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.menu-toggle-icon span {
  display: block;
  height: 1.5px;
  background: #FFFFFF;
  border-radius: 1px;
}

.current-channel {
  font-size: 14px;
  color: #A5A5A5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

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

.brand-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.brand-logo-sub {
  font-size: 10px;
  color: #A5A5A5;
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.brand-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #FFFFFF;
}

.btn-primary:hover {
  background: #EDEDED;
  border-color: #EDEDED;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.btn-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

@media (max-width: 991px) {
  .current-channel {
    display: none;
  }
  .brand-nav-right .btn-secondary {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand-nav {
    height: 56px;
  }
  .brand-nav-inner {
    height: 56px;
    padding: 0 14px;
  }
  .brand-logo-text {
    font-size: 16px;
  }
  .brand-logo-sub {
    font-size: 9px;
  }
  .menu-toggle {
    padding: 8px 10px;
    font-size: 13px;
  }
  .menu-toggle span:last-child {
    display: none;
  }
}

/* ========== 影视频道导航 ========== */
.channel-nav {
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 80;
}

.channel-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  height: 48px;
  overflow: hidden;
}

.channel-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}

.channel-list::-webkit-scrollbar {
  display: none;
}

.channel-list a {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  font-size: 14px;
  color: #A5A5A5;
  position: relative;
  flex-shrink: 0;
}

.channel-list a:hover {
  color: #FFFFFF;
}

.channel-list a.active {
  color: #FFFFFF;
  font-weight: 500;
}

.channel-list a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #FFFFFF;
}

.channel-more-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: 8px;
}

.channel-more-btn {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  font-size: 14px;
  color: #A5A5A5;
  cursor: pointer;
  background: none;
  border: none;
}

.channel-more-btn:hover,
.channel-more-btn.open {
  color: #FFFFFF;
}

.channel-more-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
  display: none;
  z-index: 100;
}

.channel-more-menu.open {
  display: block;
}

.channel-more-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #DDDDDD;
}

.channel-more-menu a:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .channel-nav-inner {
    padding: 0 14px;
    height: 44px;
  }
  .channel-list a {
    height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }
  .channel-more-btn {
    height: 44px;
    padding: 0 12px;
  }
}

/* ========== 全站栏目面板 ========== */
.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.side-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  max-width: 90vw;
  height: 100%;
  background: #0B0B0B;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 210;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
}

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

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

.side-panel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-panel-brand img {
  height: 24px;
  width: auto;
}

.side-panel-brand-text {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}

.side-panel-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #A5A5A5;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
}

.side-panel-close:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

.side-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
}

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

.panel-group-title {
  font-size: 12px;
  color: #727272;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.panel-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-link:last-child {
  border-bottom: none;
}

.panel-link-name {
  font-size: 15px;
  color: #F7F7F7;
  font-weight: 500;
  margin-bottom: 4px;
}

.panel-link-desc {
  font-size: 13px;
  color: #A5A5A5;
  line-height: 1.5;
}

.panel-link:hover .panel-link-name {
  color: #FFFFFF;
}

/* ========== 搜索面板 ========== */
.search-panel {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 220;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.search-panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 24px;
}

.search-panel-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #A5A5A5;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
}

.search-panel-close:hover {
  color: #FFFFFF;
  background: #1A1A1A;
}

.search-panel-body {
  flex: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

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

.search-input {
  width: 100%;
  height: 56px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0 20px;
  font-size: 18px;
  color: #FFFFFF;
  outline: none;
}

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

.search-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.search-section-title {
  font-size: 13px;
  color: #727272;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

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

.search-tag {
  display: inline-flex;
  padding: 8px 16px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-size: 14px;
  color: #DDDDDD;
}

.search-tag:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

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

.search-quick-links a {
  display: block;
  padding: 14px 16px;
  background: #0B0B0B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 14px;
  color: #DDDDDD;
  text-align: center;
}

.search-quick-links a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

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

.search-result-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #DDDDDD;
}

.search-result-item:hover {
  color: #FFFFFF;
}

.search-result-item.hidden {
  display: none;
}

/* ========== 手机底部导航 ========== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 70;
}

.mobile-bottom-nav-inner {
  display: flex;
  height: 56px;
  max-width: 100%;
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  color: #A5A5A5;
  min-height: 48px;
}

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

.mobile-bottom-nav a span {
  font-size: 11px;
}

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

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

.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.page-hero .lead {
  font-size: 16px;
  color: #A5A5A5;
  max-width: 640px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 32px 0 24px;
  }
  .page-hero h1 {
    font-size: 24px;
  }
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section:last-of-type {
  border-bottom: none;
}

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

.section-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.section-more {
  font-size: 14px;
  color: #A5A5A5;
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 18px;
  }
}

/* ========== 首页主视觉 ========== */
.hero-screen {
  padding: 0;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-screen-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 20px;
  min-height: 420px;
}

.hero-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #121212;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
}

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0B0B0B 0%, #1A1A1A 100%);
  color: #727272;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.hero-content .intro {
  font-size: 15px;
  color: #A5A5A5;
  line-height: 1.75;
  margin-bottom: 28px;
}

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

.hero-news {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-news-item {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-news-item:first-child {
  border-top: none;
  padding-top: 0;
}

.hero-news-label {
  font-size: 12px;
  color: #C7C7C7;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.hero-news-text {
  font-size: 14px;
  color: #A5A5A5;
  line-height: 1.5;
}

.hero-news-item:hover .hero-news-text {
  color: #DDDDDD;
}

@media (max-width: 991px) {
  .hero-screen-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .hero-news {
    order: 3;
  }
  .hero-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .hero-screen-inner {
    padding: 28px 14px;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* ========== 卡片网格 ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.content-card {
  background: #0B0B0B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.content-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: #121212;
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #121212;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.card-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
  color: #727272;
  font-size: 13px;
  letter-spacing: 0.05em;
}

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

.card-tag {
  display: inline-block;
  font-size: 12px;
  color: #C7C7C7;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #F7F7F7;
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-desc {
  font-size: 13px;
  color: #A5A5A5;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  margin-top: 12px;
  font-size: 12px;
  color: #727272;
}

/* ========== 列表式内容 ========== */
.list-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.list-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.list-num {
  font-size: 24px;
  font-weight: 700;
  color: #2A2A2A;
  min-width: 40px;
  line-height: 1.2;
}

.list-body {
  flex: 1;
}

.list-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.list-body p {
  font-size: 14px;
  color: #A5A5A5;
  margin-bottom: 0;
}

.list-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #C7C7C7;
}

.list-link:hover {
  color: #FFFFFF;
}

@media (max-width: 575px) {
  .list-item {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========== 两栏布局 ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

/* ========== 信息块 ========== */
.info-block {
  background: #0B0B0B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px 24px;
}

.info-block h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.info-block p {
  font-size: 14px;
  color: #A5A5A5;
  margin-bottom: 0;
}

.info-block + .info-block {
  margin-top: 16px;
}

/* ========== FAQ ========== */
.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.faq-list summary {
  font-size: 15px;
  font-weight: 500;
  color: #F7F7F7;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 20px;
  color: #A5A5A5;
  flex-shrink: 0;
}

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

.faq-list details p {
  margin-top: 12px;
  font-size: 14px;
  color: #A5A5A5;
  line-height: 1.7;
  padding-right: 24px;
}

/* ========== 页脚 ========== */
.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 56px 0 32px;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.footer-brand-en {
  font-size: 11px;
  color: #A5A5A5;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  color: #727272;
  line-height: 1.7;
  max-width: 280px;
}

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

.footer-col-title {
  font-size: 13px;
  color: #C7C7C7;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #A5A5A5;
  padding: 5px 0;
}

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

.footer-notice {
  font-size: 12px;
  color: #727272;
  line-height: 1.7;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: #727272;
  text-align: center;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .site-footer {
    padding: 40px 0 24px;
  }
}

/* ========== 通用内容页元素 ========== */
.prose {
  max-width: 780px;
}

.prose h2 {
  font-size: 20px;
  margin: 36px 0 16px;
}

.prose h3 {
  font-size: 17px;
  margin: 28px 0 12px;
}

.prose p {
  font-size: 15px;
  color: #DDDDDD;
  line-height: 1.8;
}

.prose ul {
  margin: 12px 0 20px;
  padding-left: 0;
}

.prose ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #DDDDDD;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: #C7C7C7;
  border-radius: 50%;
}

.note-box {
  background: #0B0B0B;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #A5A5A5;
  line-height: 1.7;
}

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

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  font-size: 12px;
  color: #C7C7C7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.text-muted {
  color: #A5A5A5;
}

.text-dim {
  color: #727272;
}

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

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