/* ============================================
   麻豆视频 - 原创样式表
   品牌：麻豆视频 | 域名：vfzjmb.cn
   定位：国内影视传媒公司+动漫社区
   ============================================ */

/* === CSS Variables === */
:root {
  --color-primary: #1a1a2e;
  --color-accent: #e94560;
  --color-deep: #0f3460;
  --color-dark: #16213e;
  --color-text: #eaeaea;
  --color-bg: #0a0a1a;
  --color-card: #12122a;
  --color-border: #2a2a4a;
  --color-accent-light: #ff6b6b;
  --color-gold: #f5c518;
  --color-green: #2ecc71;
  --color-muted: #8888aa;
  --font-main: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Noto Sans CJK SC', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 40px rgba(233,69,96,0.2);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-accent-light);
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header & Navigation === */
.site-header {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.ls2dcre {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qsvseb {
  height: 42px;
  width: auto;
}

.p32dk2v {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  color: var(--color-text);
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
  background: rgba(233,69,96,0.1);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}

/* Mobile menu toggle */
.0foux {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* === Search Bar === */
.oa910b6o {
  background: var(--color-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.zgee6g {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.zgee6g input {
  flex: 1;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--color-card);
  color: var(--color-text);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.zgee6g input:focus {
  border-color: var(--color-accent);
}

.zgee6g input::placeholder {
  color: var(--color-muted);
}

.zgee6g button {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.zgee6g button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-deep) 50%, var(--color-dark) 100%);
}

.wgkk2jv5 {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: blur(2px);
}

.eg4frqdc {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 span {
  -webkit-text-fill-color: var(--color-text);
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.m6u1f {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,69,96,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233,69,96,0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* === Section Common === */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--color-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.section-title h2 .highlight {
  color: var(--color-accent);
}

.section-title p {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Video Card Grid === */
.yh1ilwih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hkr47 {
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.hkr47:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}

.o5uo9y3 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.o5uo9y3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hkr47:hover .o5uo9y3 img {
  transform: scale(1.08);
}

.4mea8i5 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: var(--transition);
}

.hkr47:hover .4mea8i5 {
  opacity: 1;
}

.so9erwrr {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(233,69,96,0.5);
  transition: var(--transition);
}

.so9erwrr::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.hkr47:hover .so9erwrr {
  transform: scale(1.1);
}

.k2oaw0v {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.f17gna2 {
  padding: 16px;
}

.f17gna2 h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ncouc7 {
  display: flex;
  gap: 16px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.ncouc7 span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.qt5qw {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 3px 10px;
  background: rgba(233,69,96,0.12);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* === Service Cards === */
.8ez14k {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.i7u4ntym {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.i7u4ntym:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

.n9plshzg {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.i7u4ntym h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.i7u4ntym p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === Feature Section (AI) === */
.l76ff {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
}

.l76ff.reverse {
  flex-direction: row-reverse;
}

.j7wts {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.j7wts img {
  width: 100%;
  border-radius: var(--radius);
}

.uuh2uk {
  flex: 1;
}

.uuh2uk h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.uuh2uk p {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.xv1eo4oa {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.xv1eo4oa li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 0.95rem;
}

.xv1eo4oa li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* === Expert Section === */
.62u2li1n {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tumvyt {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.tumvyt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.edl86 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--color-accent);
}

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

.tumvyt h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--color-text);
}

.tumvyt .4uxnmeft {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.tumvyt p {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.h2nob7pp {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.h2nob7pp a {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: var(--transition);
}

.h2nob7pp a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* === Partner Logos === */
.naiih {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

.hizxqpp {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: var(--transition);
}

.hizxqpp:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* === FAQ Section === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-accent);
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 18px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* === Reviews === */
.1849t {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ze5xqyad {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.ze5xqyad:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.144cp9 {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.ze5xqyad p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.ov7ngf {
  display: flex;
  align-items: center;
  gap: 10px;
}

.6t8hcm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.pknxr67y span {
  display: block;
}

.pknxr67y .mc1aa22 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.pknxr67y .fp5hak4 {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* === Contact Section === */
.zrqt5g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ixw0w {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.ixw0w h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.qdd0fp8x {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.qdd0fp8x strong {
  color: var(--color-text);
  min-width: 70px;
}

.57uxr {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.luws4gq5 {
  text-align: center;
}

.luws4gq5 img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  margin-bottom: 8px;
}

.luws4gq5 span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* === How-To Guide === */
.82yl87 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.lp041 {
  text-align: center;
  position: relative;
}

.zcot3hxr {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.lp041 h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.lp041 p {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* === Share Buttons === */
.95a6g8v2 {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tm768p9 {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.tm768p9:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.56ecy { background: #07c160; }
.j8wovv { background: #e6162d; }
.g007r2w3 { background: #161823; border: 1px solid #333; }
.85od1 { background: #00a1d6; }

/* === Footer === */
.site-footer {
  background: var(--color-primary);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 0;
}

.hcpr0w {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.t0zrdm p {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
}

.9zeahrs h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
}

.9zeahrs a {
  display: block;
  color: var(--color-muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: var(--transition);
}

.9zeahrs a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.uscq1ze5 {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.uscq1ze5 a {
  color: var(--color-muted);
}

.uscq1ze5 a:hover {
  color: var(--color-accent);
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

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

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--color-border);
}

/* === Inner Page Hero === */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-deep));
  padding: 50px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--color-muted);
  font-size: 1rem;
}

/* === Content Cards (Inner Pages) === */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.content-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.content-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.content-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.content-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Stats Bar === */
.ounk5fw {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  flex-wrap: wrap;
}

.ng1lvb {
  text-align: center;
}

.chqpol {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  display: block;
}

.sg57pok1 {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* === Scroll to Top === */
.tpz7n {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(233,69,96,0.4);
  transition: var(--transition);
  z-index: 999;
}

.tpz7n:hover {
  transform: translateY(-3px);
}

.tpz7n.visible {
  display: flex;
}

/* === Community Section === */
.tn05t {
  display: flex;
  gap: 32px;
  align-items: center;
}

.4c8lnm {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.4c8lnm img {
  width: 100%;
  border-radius: var(--radius);
}

.i6m2aq96 {
  flex: 1;
}

.i6m2aq96 h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.14ehwg4 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.uu3c8w {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(233,69,96,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.14ehwg4 h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--color-text);
}

.14ehwg4 p {
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .yh1ilwih {
    grid-template-columns: repeat(2, 1fr);
  }
  .8ez14k {
    grid-template-columns: repeat(2, 1fr);
  }
  .62u2li1n {
    grid-template-columns: repeat(2, 1fr);
  }
  .hcpr0w {
    grid-template-columns: repeat(2, 1fr);
  }
  .82yl87 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l76ff {
    flex-direction: column;
  }
  .l76ff.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }
  
  .0foux {
    display: block;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .main-nav a {
    padding: 12px 16px;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .yh1ilwih {
    grid-template-columns: 1fr;
  }
  
  .8ez14k {
    grid-template-columns: 1fr;
  }
  
  .62u2li1n {
    grid-template-columns: 1fr;
  }
  
  .1849t {
    grid-template-columns: 1fr;
  }
  
  .zrqt5g {
    grid-template-columns: 1fr;
  }
  
  .hcpr0w {
    grid-template-columns: 1fr;
  }
  
  .82yl87 {
    grid-template-columns: 1fr;
  }
  
  .tn05t {
    flex-direction: column;
  }
  
  .ounk5fw {
    gap: 24px;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .57uxr {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 360px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .m6u1f {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .zgee6g {
    flex-direction: column;
  }
  
  .zgee6g input {
    border-radius: var(--radius);
    border-right: 2px solid var(--color-border);
    margin-bottom: 8px;
  }
  
  .zgee6g button {
    border-radius: var(--radius);
  }
}

/* === Lazy Load Placeholder === */
.bc9j3m {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bc9j3m.loaded {
  opacity: 1;
}

/* === Animation Keyframes === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ========== Video Author & Publish Date ========== */
.oh4lsqs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #888;
  flex-wrap: wrap;
}
.oh4lsqs .zk6ltq {
  color: var(--color-accent);
  font-weight: 600;
}
.oh4lsqs .wih1l0fy {
  margin-left: auto;
  color: #666;
  font-size: 0.75rem;
}

/* ========== Expert Credential ========== */
.1bpt2 {
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-top: 8px;
  padding: 6px 0;
  border-top: 1px solid rgba(233,69,96,0.2);
}
.h2nob7pp {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.h2nob7pp a {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.78rem;
  border-radius: 4px;
  background: var(--color-deep);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.h2nob7pp a:hover {
  background: var(--color-accent);
}

/* ========== Community Showcase ========== */
.tn05t {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.4c8lnm img {
  width: 100%;
  border-radius: 12px;
}
.i6m2aq96 h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #fff;
}
.14ehwg4 {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.uu3c8w {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.14ehwg4 h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #fff;
}
.14ehwg4 p {
  margin: 0;
  font-size: 0.88rem;
  color: #aaa;
  line-height: 1.5;
}

/* ========== QR Codes ========== */
.57uxr {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.luws4gq5 {
  text-align: center;
}
.luws4gq5 img {
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
.luws4gq5 span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: #aaa;
}

/* ========== Feature Row ========== */
.l76ff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.j7wts img {
  width: 100%;
  border-radius: 12px;
}
.uuh2uk h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}
.uuh2uk p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 12px;
}
.xv1eo4oa {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.xv1eo4oa li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.92rem;
}
.xv1eo4oa li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* ========== Video Poster overlay ========== */
.05yf5fsi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.uqzlfpjp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

/* ========== Responsive: Community, Feature, QR ========== */
@media (max-width: 768px) {
  .tn05t {
    grid-template-columns: 1fr;
  }
  .l76ff {
    grid-template-columns: 1fr;
  }
  .57uxr {
    flex-direction: column;
    align-items: center;
  }
}
