/* ==========================================================================
   免费看片 影视传媒与动漫社区 - 完全原创主题样式表
   Original Brand Theme: Oriental Fantasy Twilight Anime Palette
   Primary Brand Accent: Vermilion Red (#e63946) & Deep Indigo (#0b132b)
   Compliant with High SEO Visibility, Responsive Fluid Grid & Micro-interactions
   ========================================================================== */

:root {
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --bg-dark: #070a13;
  --bg-card: #0f172a;
  --bg-card-hover: #162038;
  --bg-card-light: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --brand-red: #e63946;
  --brand-red-glow: rgba(230, 57, 70, 0.4);
  --brand-blue: #1d3557;
  --brand-teal: #457b9d;
  --brand-cyan: #a8dadc;
  --brand-gold: #f4a261;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(230, 57, 70, 0.5);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --transition-fast: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 19, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-svg {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e63946, #b5179e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--brand-red-glow);
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title-wrap .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #ffffff, #f1faee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-title-wrap .brand-tagline {
  font-size: 0.75rem;
  color: var(--brand-cyan);
  font-weight: 500;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: #e2e8f0;
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(230, 57, 70, 0.16);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--brand-red-glow);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* Search Bar Below Navigation (Requirement) */
.search-banner-strip {
  background: #090e1b;
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

.search-box-wrapper {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.search-input-group {
  display: flex;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: border-color var(--transition-fast);
}

.search-input-group:focus-within {
  border-color: var(--brand-red);
}

.search-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.search-input-group input::placeholder {
  color: #64748b;
}

.search-input-group button {
  background: var(--brand-red);
  color: #ffffff;
  border: none;
  padding: 0 28px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-input-group button:hover {
  background: #c1121f;
}

.search-hot-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.search-hot-tags a {
  color: var(--brand-cyan);
}

.search-hot-tags a:hover {
  text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb-list a {
  color: var(--text-muted);
}

.breadcrumb-list a:hover {
  color: var(--brand-red);
}

.breadcrumb-separator {
  color: #475569;
}

/* Hero Section */
.hero-showcase {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 50% 20%, rgba(29, 53, 87, 0.35), transparent 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: #ff8fa3;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 2.75rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.hero-content h1 .highlight-text {
  background: linear-gradient(120deg, #e63946, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.seo-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: #94a3b8;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.hero-visual-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-card:hover img {
  transform: scale(1.03);
}

.hero-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.hero-visual-card:hover .hero-play-overlay {
  opacity: 1;
}

.play-circle-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.95);
  box-shadow: 0 0 25px rgba(230, 57, 70, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  transition: transform 0.2s ease;
}

.hero-visual-card:hover .play-circle-btn {
  transform: scale(1.1);
}

.hero-visual-meta {
  padding: 16px 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Sections */
.section-block {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.section-tag {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Video Grid & Cards */
.media-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.video-interactive-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.video-interactive-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 16px 36px -12px rgba(230, 57, 70, 0.25);
}

.video-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000000;
  overflow: hidden;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-interactive-card:hover .video-thumb-container img {
  transform: scale(1.05);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.video-interactive-card:hover .video-card-overlay {
  opacity: 1;
}

.hover-play-trigger {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 20px var(--brand-red-glow);
}

.video-badge-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.video-badge-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(29, 53, 87, 0.85);
  color: #f1faee;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.video-info-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.video-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.6;
}

.video-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.video-tag-pill {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.video-stats-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  font-size: 0.85rem;
  color: #64748b;
}

.stats-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Expert Cards */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.expert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-fast);
}

.expert-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.expert-avatar-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid rgba(230, 57, 70, 0.4);
  padding: 3px;
  background: #111827;
  overflow: hidden;
}

.expert-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.expert-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.expert-role {
  color: var(--brand-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.expert-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.expert-awards-tag {
  background: rgba(244, 162, 97, 0.12);
  color: #f4a261;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 18px;
}

.expert-actions-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* FAQ Accordion */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition-fast);
}

.faq-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-q-badge {
  background: var(--brand-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Testimonials / User Comments */
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.comment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
}

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

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-cyan);
}

.comment-user-info {
  display: flex;
  flex-direction: column;
}

.comment-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.92rem;
}

.comment-rating {
  color: #f59e0b;
  font-size: 0.8rem;
}

.comment-body {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.65;
}

/* Partners Logo Wall */
.partner-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.partner-logo-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-weight: 700;
  color: #94a3b8;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.partner-logo-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Contact & Community Entrance */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.company-meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.company-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.company-meta-label {
  font-weight: 700;
  color: #ffffff;
  min-width: 90px;
}

.qr-code-showcase-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.qr-codes-row {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.qr-card-unit {
  text-align: center;
}

.qr-card-unit img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.qr-card-unit span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Share Bar */
.social-share-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.4);
  color: #ffffff;
}

/* Modal for Video Player Simulation */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-backdrop.active {
  display: flex;
}

.video-modal-window {
  background: #0b132b;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.video-modal-body {
  position: relative;
  aspect-ratio: 16/9;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: #04070e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
  color: var(--text-muted);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-links-list a:hover {
  color: var(--brand-red);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-bar a {
  color: #94a3b8;
}

.footer-bottom-bar a:hover {
  color: #ffffff;
}

/* Toast Message */
#actionToast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--brand-red);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#actionToast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-seo-keywords {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-navigation {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    justify-content: flex-start;
  }
  .nav-link {
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 0.88rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .media-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* === 免费看片：EEAT、内容披露与无障碍扩展样式 === */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:absolute; left:16px; top:-48px; z-index:10001; background:#ffffff; color:#0b132b; padding:10px 14px; border-radius:8px; font-weight:700; transition:top .2s ease; }
.skip-link:focus { top:16px; }
.search-disclosure { margin:8px 0 0; text-align:center; font-size:.76rem; color:#94a3b8; }
.video-interactive-card:focus-visible, .hero-visual-card:focus-visible, .share-btn:focus-visible, .nav-link:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible { outline:3px solid #f4a261; outline-offset:3px; }
.trust-notice { padding:30px 0; background:linear-gradient(90deg,rgba(230,57,70,.08),rgba(69,123,157,.1)); border-bottom:1px solid rgba(168,218,220,.16); }
.trust-notice-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:32px; align-items:center; }
.trust-notice h2, .policy-card h2, .checklist-item h3, .correction-panel h2 { color:#fff; font-size:1.25rem; line-height:1.45; margin-bottom:12px; }
.trust-notice p, .trust-list, .policy-card p, .checklist-item p, .correction-panel p { color:#cbd5e1; font-size:.92rem; line-height:1.78; }
.trust-list { list-style:none; display:grid; gap:10px; }
.trust-list li { padding-left:16px; border-left:2px solid #e63946; }
.trust-list a, .correction-panel a, .footer-policy-link { color:#a8dadc; text-decoration:underline; text-underline-offset:3px; }
.demo-video-notice { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:24px; text-align:center; background:linear-gradient(0deg,rgba(7,10,19,.85),rgba(7,10,19,.45)); color:#fff; }
.demo-video-notice strong { font-size:1.1rem; }
.demo-video-notice span { max-width:480px; font-size:.9rem; color:#cbd5e1; }
.modal-disclosure { padding:15px 20px; color:#94a3b8; font-size:.84rem; background:#070a13; }
.footer-brand { margin-bottom:16px; }
.footer-brand img { width:42px; height:auto; border-radius:8px; }
.footer-brand-name { font-weight:800; font-size:1.1rem; color:#fff; }
.site-footer p { font-size:.88rem; line-height:1.75; margin-bottom:14px; }
.pending-label { display:inline-block; margin-left:4px; padding:1px 5px; border:1px solid rgba(244,162,97,.45); border-radius:4px; color:#f4a261; font-size:.7rem; }
.footer-qr-row { display:flex; gap:16px; }
.footer-qr-card { text-align:center; font-size:.72rem; color:#94a3b8; }
.footer-qr-card img { width:100px; height:100px; padding:4px; background:#fff; border-radius:6px; margin-bottom:6px; }
.qr-disclosure, .date-context { font-size:.73rem; color:#64748b; }
.mcp-demo-note { display:flex; gap:10px; align-items:flex-start; background:rgba(255,255,255,.025); border:1px solid rgba(255,255,255,.09); border-radius:8px; padding:13px 16px; margin-bottom:24px; color:#cbd5e1; font-size:.82rem; }
.status-dot { width:8px; height:8px; flex:0 0 auto; margin-top:6px; border-radius:50%; background:#f4a261; }
.compact-hero { padding:50px 0; }
.policy-hero { max-width:850px; margin:0 auto; text-align:center; }
.policy-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.policy-card, .checklist-item, .correction-panel { background:var(--bg-card); border:1px solid var(--border-subtle); border-radius:var(--radius-md); padding:26px; }
.section-muted { background:#090d1c; }
.checklist-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.correction-panel { max-width:900px; margin:0 auto; border-color:rgba(230,57,70,.35); }
@media (max-width:768px) { .trust-notice-grid, .policy-grid, .checklist-grid { grid-template-columns:1fr; } .footer-qr-row { flex-wrap:wrap; } .search-hot-tags { flex-wrap:wrap; } .date-context { display:block; margin-top:4px; } }
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.01ms !important; } }
