/* ============================================
   麻豆传媒 全站样式表
   赛博朋克风格 · 影视传媒主题
   fmyoxt.cn
   ============================================ */

/* CSS Variables */
:root {
  --primary: #FF2D78;
  --primary-light: #FF6B9D;
  --secondary: #7B2FFF;
  --accent: #00D4FF;
  --gold: #FFD700;
  --bg-dark: #0A0A1A;
  --bg-card: #12122A;
  --bg-card-hover: #1A1A3A;
  --text-white: #FFFFFF;
  --text-light: #E0E0E0;
  --text-muted: #A0A0B0;
  --border-glow: rgba(255,45,120,0.3);
  --shadow-neon: 0 0 20px rgba(255,45,120,0.2);
  --shadow-purple: 0 0 20px rgba(123,47,255,0.2);
  --gradient-primary: linear-gradient(135deg, #FF2D78, #7B2FFF);
  --gradient-accent: linear-gradient(135deg, #7B2FFF, #00D4FF);
  --gradient-warm: linear-gradient(135deg, #FF2D78, #FF6B9D);
  --max-width: 1280px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ============ Header / Navigation ============ */
.bidh26 {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,45,120,0.15);
  transition: var(--transition);
}
.gijwpltn {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 68px;
}
.qc5fqh { display: flex; align-items: center; gap: 10px; }
.q78zcp { height: 42px; width: auto; }
.l4ehsj {
  font-size: 1.4rem; font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bf5ogc9q { display: flex; align-items: center; gap: 6px; }
.bf5ogc9q a {
  color: var(--text-light); padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 500; transition: var(--transition);
  position: relative;
}
.bf5ogc9q a:hover, .bf5ogc9q a.active {
  color: var(--primary); background: rgba(255,45,120,0.08);
}
.bf5ogc9q a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--primary); border-radius: 1px;
}
.qcxqu6t7 { display: none; background: none; border: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; }

/* Search Bar under nav */
.mt6aqx {
  background: rgba(18,18,42,0.85);
  border-bottom: 1px solid rgba(123,47,255,0.12);
  padding: 10px 0;
  margin-top: 68px;
}
.wrh3xh {
  max-width: 640px; margin: 0 auto; position: relative;
  display: flex; align-items: center;
}
.wrh3xh input {
  width: 100%; padding: 10px 48px 10px 18px;
  background: var(--bg-card); border: 1px solid rgba(255,45,120,0.2);
  border-radius: 24px; color: var(--text-white); font-size: 0.95rem;
  outline: none; transition: var(--transition);
}
.wrh3xh input:focus { border-color: var(--primary); box-shadow: var(--shadow-neon); }
.wrh3xh input::placeholder { color: var(--text-muted); }
.wrh3xh button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: var(--gradient-primary); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.wrh3xh button:hover { opacity: 0.85; }

/* ============ Hero Section ============ */
.hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(10,10,26,0.7), rgba(10,10,26,0.95)),
              url('../images/banners/hero-banner.png') center/cover no-repeat;
  text-align: center; padding: 80px 20px 60px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,45,120,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(123,47,255,0.1) 0%, transparent 60%);
}
.tbv342 { position: relative; z-index: 2; max-width: 800px; }
.hero h1 {
  font-size: 2.8rem; font-weight: 800; margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.3;
}
.hero h1 span { display: block; font-size: 1.1rem; font-weight: 400; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); margin-top: 8px; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.xqlfy7 { display: flex; justify-content: center; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.wiufzo { text-align: center; }
.wiufzo .num { font-size: 2rem; font-weight: 700; color: var(--primary); }
.wiufzo .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 24px; font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--gradient-primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,45,120,0.35); color: #fff; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: rgba(255,45,120,0.1); color: var(--primary); }
.btn-accent { background: var(--gradient-accent); color: #fff; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); color: #fff; }
.dpcme { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ Section Common ============ */
.section { padding: 70px 0; }
.kxop2 { background: var(--bg-card); }
.lodb2u { text-align: center; margin-bottom: 48px; }
.lodb2u h2 {
  font-size: 2rem; font-weight: 700; margin-bottom: 12px;
  color: var(--text-white);
}
.lodb2u h2 .kg4gigp { color: var(--primary); }
.lodb2u p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.dont4a {
  display: inline-block; padding: 4px 14px; border-radius: 12px;
  background: rgba(255,45,120,0.1); color: var(--primary);
  font-size: 0.8rem; font-weight: 600; margin-bottom: 12px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ============ Video Cards ============ */
.x2oln1v7 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.fee47k1 {
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  border: 1px solid rgba(255,45,120,0.08);
}
.fee47k1:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-neon);
  border-color: rgba(255,45,120,0.25);
}
.w14zs3gd {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: #111;
}
.w14zs3gd img,
.w14zs3gd video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.fee47k1:hover .w14zs3gd img,
.fee47k1:hover .w14zs3gd video { transform: scale(1.05); }
.z4ex0vj {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.8);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,45,120,0.85); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  box-shadow: 0 0 30px rgba(255,45,120,0.5);
}
.z4ex0vj::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.fee47k1:hover .z4ex0vj { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.pvjdidyh {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.8); color: #fff; padding: 2px 8px;
  border-radius: 4px; font-size: 0.75rem; font-weight: 600;
}
.r4ckwjx { padding: 16px; }
.r4ckwjx h3 {
  font-size: 1rem; font-weight: 600; color: var(--text-white);
  margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.jiyzopx {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.8rem; color: var(--text-muted);
}
.jiyzopx span { display: flex; align-items: center; gap: 4px; }
.vw5v1t4m { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.vw5v1t4m .tag {
  padding: 2px 10px; border-radius: 10px; font-size: 0.72rem;
  background: rgba(123,47,255,0.12); color: var(--secondary);
}

/* ============ Service Grid ============ */
.mitwy {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.v4el57b {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid rgba(123,47,255,0.1);
  transition: var(--transition);
}
.v4el57b:hover {
  transform: translateY(-4px);
  border-color: rgba(123,47,255,0.3);
  box-shadow: var(--shadow-purple);
}
.d4uryem {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--gradient-accent); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.8rem;
}
.v4el57b h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-white); margin-bottom: 10px; }
.v4el57b p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============ Expert Cards ============ */
.s37xw5px {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.hmssau1w {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px; text-align: center;
  border: 1px solid rgba(255,45,120,0.08);
  transition: var(--transition);
}
.hmssau1w:hover { border-color: rgba(255,45,120,0.2); box-shadow: var(--shadow-neon); }
.ccagk7a {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px;
  border: 3px solid rgba(255,45,120,0.3);
}
.hmssau1w h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.hmssau1w .role { color: var(--primary); font-size: 0.85rem; margin-bottom: 10px; }
.hmssau1w .bio { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.hmssau1w .awards { font-size: 0.78rem; color: var(--gold); margin-bottom: 14px; }
.zaxc73 { display: flex; gap: 8px; justify-content: center; }
.zaxc73 a {
  padding: 6px 16px; border-radius: 16px; font-size: 0.8rem; font-weight: 500;
}

/* ============ Partners ============ */
.grdbxpl0 {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 30px; align-items: center;
}
.qi1m7z {
  background: var(--bg-card); border-radius: var(--radius-sm);
  padding: 18px 28px; border: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.qi1m7z:hover { border-color: var(--primary); color: var(--primary); }

/* ============ Reviews ============ */
.j3povc36 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.t7xiw {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px; border: 1px solid rgba(255,45,120,0.06);
}
.g3jjo { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }
.ize3b { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.obr2vp { display: flex; align-items: center; gap: 10px; }
.nelu8es {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-primary); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
}
.memsbt .name { font-size: 0.88rem; font-weight: 600; color: var(--text-white); }
.memsbt .date { font-size: 0.75rem; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border-radius: var(--radius-sm);
  margin-bottom: 12px; border: 1px solid rgba(123,47,255,0.1);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--text-white); font-size: 0.95rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .arrow { transition: transform 0.3s ease; font-size: 0.8rem; color: var(--primary); }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 18px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ============ Contact Section ============ */
.xzwmuz3d {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.ebspjn {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px; text-align: center;
  border: 1px solid rgba(0,212,255,0.1);
}
.ebspjn h4 { font-size: 1rem; font-weight: 600; color: var(--text-white); margin-bottom: 12px; }
.ebspjn p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.ebspjn .a9szr0 { width: 160px; height: 160px; margin: 12px auto; border-radius: var(--radius-sm); }

/* ============ How-To Guide ============ */
.fiy5xc {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; counter-reset: step;
}
.ywmkb8r {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px; position: relative;
  border: 1px solid rgba(0,212,255,0.1);
  counter-increment: step;
}
.ywmkb8r::before {
  content: counter(step);
  position: absolute; top: -12px; left: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.ywmkb8r h4 { font-size: 1rem; font-weight: 600; color: var(--text-white); margin-bottom: 8px; margin-top: 8px; }
.ywmkb8r p { font-size: 0.85rem; color: var(--text-muted); }

/* ============ Footer ============ */
.izau3p6 {
  background: #060612; border-top: 1px solid rgba(255,45,120,0.1);
  padding: 48px 0 24px;
}
.bapzk {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px; margin-bottom: 32px;
}
.jhegh8l h4 {
  font-size: 1rem; font-weight: 600; color: var(--text-white);
  margin-bottom: 16px; position: relative; padding-bottom: 8px;
}
.jhegh8l h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--primary);
}
.jhegh8l p, .jhegh8l a { font-size: 0.85rem; color: var(--text-muted); }
.jhegh8l a { display: block; margin-bottom: 8px; }
.jhegh8l a:hover { color: var(--primary); }
.jhegh8l .c3xhw { height: 36px; margin-bottom: 12px; }
.wlnhmp { width: 120px; height: 120px; border-radius: var(--radius-sm); margin-top: 8px; }
.zdd0v {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px; text-align: center;
  font-size: 0.82rem; color: var(--text-muted);
}
.zdd0v a { color: var(--primary); }

/* Social Share */
.jas39 { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.bmorlm9f {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 20px; font-size: 0.82rem;
  background: var(--bg-card); color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition); cursor: pointer;
}
.bmorlm9f:hover { border-color: var(--primary); color: var(--primary); }

/* ============ Breadcrumb ============ */
.slxayxc6 {
  padding: 14px 0; font-size: 0.82rem; color: var(--text-muted);
  margin-top: 68px;
}
.slxayxc6 a { color: var(--text-muted); }
.slxayxc6 a:hover { color: var(--primary); }
.slxayxc6 span { margin: 0 6px; }

/* ============ Inner Page Hero ============ */
.tzgsc1 {
  padding: 100px 20px 50px;
  text-align: center;
  background: linear-gradient(180deg, rgba(123,47,255,0.08), transparent);
}
.tzgsc1 h1 { font-size: 2.2rem; font-weight: 700; color: var(--text-white); margin-bottom: 12px; }
.tzgsc1 p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { min-height: 400px; padding: 60px 16px 40px; }
  .section { padding: 48px 0; }
  .lodb2u h2 { font-size: 1.5rem; }
  .x2oln1v7 { grid-template-columns: 1fr; }
  .mitwy { grid-template-columns: 1fr 1fr; }
  .s37xw5px { grid-template-columns: 1fr; }
  .gijwpltn { height: 56px; }
  .q78zcp { height: 32px; }
  .l4ehsj { font-size: 1.1rem; }
  .bf5ogc9q {
    display: none; position: fixed; top: 56px; left: 0; right: 0;
    background: rgba(10,10,26,0.98); flex-direction: column;
    padding: 16px; gap: 4px;
    border-bottom: 1px solid rgba(255,45,120,0.15);
  }
  .bf5ogc9q.active { display: flex; }
  .qcxqu6t7 { display: block; }
  .mt6aqx { margin-top: 56px; }
  .xqlfy7 { gap: 20px; }
  .wiufzo .num { font-size: 1.5rem; }
  .bapzk { grid-template-columns: 1fr 1fr; }
  .xzwmuz3d { grid-template-columns: 1fr; }
  .fiy5xc { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .mitwy { grid-template-columns: 1fr; }
  .bapzk { grid-template-columns: 1fr; }
  .dpcme { flex-direction: column; align-items: center; }
}

/* ============ Animations ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* Lazy load placeholder */
.lazy { opacity: 0; transition: opacity 0.4s ease; }
.lazy.loaded { opacity: 1; }

/* Community features icons */
.a12w800r {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.oumuoe5 {
  background: var(--bg-card); border-radius: var(--radius-sm);
  padding: 20px 16px; text-align: center;
  border: 1px solid rgba(0,212,255,0.08);
  transition: var(--transition);
}
.oumuoe5:hover { border-color: var(--accent); }
.oumuoe5 .icon { font-size: 2rem; margin-bottom: 8px; }
.oumuoe5 h4 { font-size: 0.9rem; color: var(--text-white); margin-bottom: 4px; }
.oumuoe5 p { font-size: 0.78rem; color: var(--text-muted); }

/* AI Section */
.iqrvt {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.m8ryk76h {
  background: linear-gradient(135deg, rgba(123,47,255,0.08), rgba(0,212,255,0.05));
  border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(0,212,255,0.12);
  transition: var(--transition);
}
.m8ryk76h:hover { border-color: rgba(0,212,255,0.3); box-shadow: 0 0 20px rgba(0,212,255,0.15); }
.m8ryk76h h3 { font-size: 1.05rem; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.m8ryk76h p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
