/* ============================================
   芒果视频 - 原创样式表
   品牌：芒果视频 | 域名：oeyllp.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;
}

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

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

.v1dzy {
  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 */
.u44my14 {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

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

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

.snt2es 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%);
}

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

.6hnklvmk {
  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;
}

.na5372 {
  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 === */
.ab6fypn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

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

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

.b4qmg:hover .bhtxzug img {
  transform: scale(1.08);
}

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

.b4qmg:hover .w9x7g8 {
  opacity: 1;
}

.395am3fb {
  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);
}

.395am3fb::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;
}

.b4qmg:hover .395am3fb {
  transform: scale(1.1);
}

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

.uidm87 {
  padding: 16px;
}

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

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

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

.z34d9 {
  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 === */
.bvor5tf9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

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

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

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

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

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

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

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

.a0hxphpc {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.iy82n .k4v4cg {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

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

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

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

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

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

.ce4gdfcy {
  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);
}

.ce4gdfcy: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 === */
.sgse6t {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

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

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

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

.1qk7zu {
  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;
}

.k09u6v span {
  display: block;
}

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

.k09u6v .73s6g0th {
  font-size: 0.78rem;
  color: var(--color-muted);
}

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

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

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

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

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

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

.7cdfu {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.znmx8 { background: #07c160; }
.761xjl { background: #e6162d; }
.61dy4 { background: #161823; border: 1px solid #333; }
.zrzbac { background: #00a1d6; }

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

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

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

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

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

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

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

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

.bzy9ye6s 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 === */
.3028c {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  flex-wrap: wrap;
}

.cda9g5q1 {
  text-align: center;
}

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

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

/* === Scroll to Top === */
.0qxcw7dl {
  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;
}

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

.0qxcw7dl.visible {
  display: flex;
}

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

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

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

.4qx46it {
  flex: 1;
}

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

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

.5kgbwl2o {
  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;
}

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

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

/* === Responsive === */
@media (max-width: 1024px) {
  .ab6fypn {
    grid-template-columns: repeat(2, 1fr);
  }
  .bvor5tf9 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ue9zmg5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fya3m5u {
    grid-template-columns: repeat(2, 1fr);
  }
  .8d0q8pl {
    grid-template-columns: repeat(2, 1fr);
  }
  .ocis9 {
    flex-direction: column;
  }
  .ocis9.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }
  
  .u44my14 {
    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;
  }
  
  .ab6fypn {
    grid-template-columns: 1fr;
  }
  
  .bvor5tf9 {
    grid-template-columns: 1fr;
  }
  
  .ue9zmg5 {
    grid-template-columns: 1fr;
  }
  
  .sgse6t {
    grid-template-columns: 1fr;
  }
  
  .galv4tov {
    grid-template-columns: 1fr;
  }
  
  .fya3m5u {
    grid-template-columns: 1fr;
  }
  
  .8d0q8pl {
    grid-template-columns: 1fr;
  }
  
  .jpr0og44 {
    flex-direction: column;
  }
  
  .3028c {
    gap: 24px;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .pi3wz {
    flex-direction: column;
    align-items: center;
  }
}

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

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

.ank860.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 ========== */
.1bma80 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #888;
  flex-wrap: wrap;
}
.1bma80 .g5845 {
  color: var(--color-accent);
  font-weight: 600;
}
.1bma80 .9u4097zj {
  margin-left: auto;
  color: #666;
  font-size: 0.75rem;
}

/* ========== Expert Credential ========== */
.c5bevjw {
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-top: 8px;
  padding: 6px 0;
  border-top: 1px solid rgba(233,69,96,0.2);
}
.yp89c {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.yp89c 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;
}
.yp89c a:hover {
  background: var(--color-accent);
}

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

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

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

/* ========== Video Poster overlay ========== */
.wq7wn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.8x2r411k {
  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) {
  .jpr0og44 {
    grid-template-columns: 1fr;
  }
  .ocis9 {
    grid-template-columns: 1fr;
  }
  .pi3wz {
    flex-direction: column;
    align-items: center;
  }
}
