/* ============================================
   国产 - 原创样式表
   品牌：国产 | 域名：becph53.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fz9wa:hover .7q5erdy img {
  transform: scale(1.08);
}

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

.fz9wa:hover .tpbyq {
  opacity: 1;
}

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

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

.fz9wa:hover .k2th8 {
  transform: scale(1.1);
}

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

.8n1e6mjx {
  padding: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.bt7div {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bwhtsg span {
  display: block;
}

.bwhtsg .06hcz {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.bwhtsg .o687ml {
  font-size: 0.78rem;
  color: var(--color-muted);
}

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

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

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

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

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

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

.fclo2 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.tx526 { background: #07c160; }
.fyez96y { background: #e6162d; }
.29a540 { background: #161823; border: 1px solid #333; }
.berbs5 { background: #00a1d6; }

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

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

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

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

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

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

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

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

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

.3p07oy {
  text-align: center;
}

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

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

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

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

.mtv4k.visible {
  display: flex;
}

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

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

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

.atmsj3 {
  flex: 1;
}

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

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

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

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

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

/* === Responsive === */
@media (max-width: 1024px) {
  .wihjad {
    grid-template-columns: repeat(2, 1fr);
  }
  .x7txe3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .xplc8 {
    grid-template-columns: repeat(2, 1fr);
  }
  .oefi0 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hstivry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gp6kv {
    flex-direction: column;
  }
  .gp6kv.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }
  
  .fxbu2kng {
    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;
  }
  
  .wihjad {
    grid-template-columns: 1fr;
  }
  
  .x7txe3 {
    grid-template-columns: 1fr;
  }
  
  .xplc8 {
    grid-template-columns: 1fr;
  }
  
  .57c9k4 {
    grid-template-columns: 1fr;
  }
  
  .h8ubi3 {
    grid-template-columns: 1fr;
  }
  
  .oefi0 {
    grid-template-columns: 1fr;
  }
  
  .hstivry {
    grid-template-columns: 1fr;
  }
  
  .uc6xy {
    flex-direction: column;
  }
  
  .6kh1z8k4 {
    gap: 24px;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .jfm65nsr {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

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

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

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

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

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