/* ============================================================
   91 修车改装 - 原创主题样式
   品牌色：#FF6B00（橙）/ #1A1A2E（深夜蓝）/ #E8E8E8（银）
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
  background: #0d0d1a;
  color: #e0e0e0;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: #FF6B00; text-decoration: none; transition: color .25s; }
a:hover { color: #ffaa55; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
  --orange: #FF6B00;
  --orange-light: #FF8C35;
  --orange-dark: #CC5500;
  --dark: #0d0d1a;
  --dark2: #141428;
  --dark3: #1e1e38;
  --dark4: #252545;
  --silver: #c8c8d8;
  --silver-light: #e8e8f0;
  --white: #ffffff;
  --text: #d0d0e0;
  --text-muted: #8888aa;
  --border: rgba(255,107,0,0.2);
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-orange: 0 4px 24px rgba(255,107,0,0.25);
  --transition: all .3s ease;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ---------- Container ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* ---------- Announce Bar ---------- */
.8nee446 {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-dark));
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.8nee446 .container { display: flex; align-items: center; gap: 12px; }
.bj55mptm {
  background: var(--dark);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.217r84 {
  overflow: hidden;
  flex: 1;
}
.942zr {
  display: inline-block;
  white-space: nowrap;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  animation: scrollLeft 40s linear infinite;
}
@keyframes scrollLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---------- Site Header ---------- */
.1zacs {
  background: rgba(13,13,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.2oqew {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.71iw8xsw {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.6waii {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.umk9e7 {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.4w68g {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.4w68g span { color: var(--orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  color: var(--silver);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
  background: rgba(255,107,0,0.1);
}

.rln4cvri {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.6x1wb8 {
  color: var(--silver);
  font-size: 14px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: var(--transition);
}
.6x1wb8:hover { color: var(--orange); border-color: var(--orange); }
.a3l8fvt4 {
  background: var(--orange);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 6px;
  transition: var(--transition);
}
.a3l8fvt4:hover { background: var(--orange-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Search Bar ---------- */
.l4jnsd {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.hkqkk {
  display: flex;
  align-items: center;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  transition: border-color .3s;
}
.hkqkk:focus-within { border-color: var(--orange); }
.hkqkk input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--silver-light);
  font-size: 14px;
  padding: 10px 16px;
}
.hkqkk input::placeholder { color: var(--text-muted); }
.hkqkk button {
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  cursor: pointer;
  transition: background .25s;
}
.hkqkk button:hover { background: var(--orange-light); }
.co5jh6 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
}
.co5jh6 span { color: var(--text-muted); }
.co5jh6 a {
  color: var(--text-muted);
  background: var(--dark3);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  transition: var(--transition);
}
.co5jh6 a:hover { color: var(--orange); background: rgba(255,107,0,0.1); }

/* ---------- Hero / Banner ---------- */
.88wetl {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.88wetl-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}
.88wetl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,26,0.9) 0%, rgba(255,107,0,0.15) 60%, rgba(13,13,26,0.7) 100%);
  z-index: 1;
}
.88wetl-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.88wetl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.88wetl h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.88wetl h1 .hl { color: var(--orange); }
.88wetl-desc {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.88wetl-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 8px;
  transition: var(--transition);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.88wetl-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.88wetl-stat-item { text-align: left; }
.88wetl-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.88wetl-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ---------- Section Common ---------- */
.section { padding: 72px 0; }
.ud0e76ps { background: var(--dark2); }
.t43ap {
  text-align: center;
  margin-bottom: 48px;
}
.ydm2yhn0 {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,107,0,0.3);
}
.6jlnq {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.6jlnq .hl { color: var(--orange); }
.7ombu44 {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Video Cards ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.video-card {
  background: var(--dark3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark4);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity .3s;
}
.video-card:hover .video-play-btn { opacity: 1; }
.play-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,107,0,0.5);
  transition: transform .3s;
}
.video-card:hover .play-icon { transform: scale(1.1); }
.play-icon svg { width: 22px; height: 22px; fill: var(--white); margin-left: 3px; }
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
}
.video-tag-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.video-info { padding: 14px 16px 16px; }
.video-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--silver-light);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.video-meta span { display: flex; align-items: center; gap: 4px; }
.video-meta svg { width: 13px; height: 13px; fill: currentColor; }
.video-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.video-tag {
  font-size: 11px;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,107,0,0.2);
}

/* ---------- Feature Modules ---------- */
.h2eta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.g1qqarai {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.g1qqarai::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}
.g1qqarai:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.g1qqarai:hover::before { transform: scaleX(1); }
.o5c0emzs {
  width: 52px;
  height: 52px;
  background: rgba(255,107,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.rfenhln {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.w0u9uxaa { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---------- Expert Cards ---------- */
.j08fws {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.rd4er05p {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.rd4er05p:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.q58d0v {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,107,0,0.3);
}
.vp2wv {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.ng44hgp8 {
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 10px;
  font-weight: 600;
}
.g053y { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.pnz5sb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}
.dtnd8l {
  font-size: 11px;
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,107,0,0.2);
}
.9azdntyx { display: flex; gap: 8px; justify-content: center; }
.btn-sm {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-sm-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-sm-primary:hover { background: var(--orange-light); color: var(--white); }
.btn-sm-outline {
  border: 1px solid var(--border);
  color: var(--silver);
}
.btn-sm-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Partner Logo Wall ---------- */
.as9jh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.zvrbh {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: var(--transition);
}
.zvrbh:hover { border-color: var(--orange); transform: translateY(-3px); }
.zn2ubx {
  font-size: 15px;
  font-weight: 800;
  color: var(--silver);
  letter-spacing: 0.5px;
}
.07ghwd0 { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ---------- Stats Bar ---------- */
.d5e47 {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.zxf283d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.fyjfjc7 {}
.d698fcci {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.3wasdbdi { font-size: 13px; color: var(--text-muted); }

/* ---------- Review Cards ---------- */
.sb96h {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.hhj4j {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}
.hhj4j:hover { border-color: var(--orange); box-shadow: var(--shadow-orange); }
.pd5vj3 {
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.5;
}
.xt2mnqt {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 16px;
}
.bzbsy { display: flex; align-items: center; gap: 12px; }
.8jelj {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.e76daheb { font-size: 14px; font-weight: 700; color: var(--white); }
.o3gfn { font-size: 12px; color: var(--text-muted); }
.wu80p { display: flex; gap: 2px; margin-top: 3px; }
.star { color: #FFD700; font-size: 12px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item:hover { border-color: var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--silver-light);
  gap: 12px;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ---------- How To Steps ---------- */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.7roqntn {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.7roqntn:hover { border-color: var(--orange); transform: translateY(-4px); }
.20ajo0p7 {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 14px;
}
.bhn35 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ta75fplj { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---------- Contact Section ---------- */
.dc4r2lue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.spkuchh4 {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.spkuchh4 h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.x1mh4 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}
.cjfrnn { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.overuqv { color: var(--text-muted); font-size: 12px; }
.56n7j6 { color: var(--silver-light); font-weight: 500; }
.8m354mzd {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.upz81 { text-align: center; }
.upz81 img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 2px solid var(--border);
}
.3puawkwd { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ---------- CTA Banner ---------- */
.slfl7d {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.slfl7d::before {
  content: '男同网';
  position: absolute;
  font-size: 300px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.slfl7d h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.slfl7d p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 28px; }
.azdwil2r { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-white:hover { background: var(--silver-light); color: var(--orange-dark); transform: translateY(-2px); }
.btn-dark {
  background: rgba(0,0,0,0.3);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-dark:hover { background: rgba(0,0,0,0.5); color: var(--white); transform: translateY(-2px); }

/* ---------- Share Bar ---------- */
.rf5385b {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.yu5t3ddi {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.4wdh0 { font-size: 13px; color: var(--text-muted); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  transition: var(--transition);
  cursor: pointer;
}
.0cwisc { background: rgba(9,187,7,0.1); color: #09BB07; border: 1px solid rgba(9,187,7,0.3); }
.0cwisc:hover { background: rgba(9,187,7,0.2); }
.gtrbhxp { background: rgba(230,22,45,0.1); color: #E6162D; border: 1px solid rgba(230,22,45,0.3); }
.gtrbhxp:hover { background: rgba(230,22,45,0.2); }
.tuci1 { background: rgba(255,255,255,0.05); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.tuci1:hover { background: rgba(255,255,255,0.1); }
.lblxd8 { background: rgba(0,161,214,0.1); color: #00A1D6; border: 1px solid rgba(0,161,214,0.3); }
.lblxd8:hover { background: rgba(0,161,214,0.2); }

/* ---------- Site Footer ---------- */
.pdu3k3b {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.lumd8a0 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.v8qnq86t {}
.d5gj4p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.d5gj4p img { height: 32px; width: auto; }
.d5gj4p-text {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
}
.d5gj4p-text span { color: var(--orange); }
.vgcrfg0 {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.5pgcca { font-size: 12px; color: var(--text-muted); line-height: 2; }
.5pgcca a { color: var(--text-muted); }
.5pgcca a:hover { color: var(--orange); }
.nh4w1wp {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.b6w1dxd { display: flex; flex-direction: column; gap: 8px; }
.b6w1dxd a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .25s;
}
.b6w1dxd a:hover { color: var(--orange); }
.d512rz6 {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.771nlla { font-size: 12px; color: var(--text-muted); }
.771nlla a { color: var(--text-muted); }
.771nlla a:hover { color: var(--orange); }
.wtqok3w {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,107,0,0.08);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,107,0,0.15);
}
.1iosb6 { font-size: 11px; color: var(--text-muted); }
.1iosb6 a { color: var(--text-muted); }

/* ---------- Breadcrumb ---------- */
.13pyxuti {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--text-muted); font-size: 11px; }
.breadcrumb .current { color: var(--orange); }

/* ---------- Tag Cloud ---------- */
.6i1cqi0f-section { padding: 32px 0; }
.6i1cqi0f {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.6i1cqi0f a {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 5px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.6i1cqi0f a:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(255,107,0,0.08);
}

/* ---------- AI Section ---------- */
.ziwzd5vb {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.9n54gu {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.9n54gu::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,107,0,0.15), transparent);
  border-radius: 50%;
}
.9n54gu:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.of5lu3v8 { font-size: 32px; margin-bottom: 14px; }
.hrqbsxw { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cbw5q { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.vkyhvdp9 {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 10px;
  border: 1px solid rgba(255,107,0,0.25);
  letter-spacing: 0.5px;
}

/* ---------- Community Section ---------- */
.rw31hbvn {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.q64prwv {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.q64prwv:hover { border-color: var(--orange); transform: translateY(-4px); }
.k3079130 { font-size: 36px; margin-bottom: 12px; }
.hcob6aso { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.gy0nu { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.0no54 { font-size: 12px; color: var(--orange); font-weight: 600; }

/* ---------- Video Player Modal ---------- */
.fzzc04b {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.fzzc04b.active { display: flex; }
.dnkib {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 900px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.9ydm9c {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.9ydm9c:hover { background: var(--orange); }
.v8h8ftui {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.v8h8ftui video,
.v8h8ftui iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.is5h4 { padding: 16px 20px; }
.5fwtfi7 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.x4i3f0y { font-size: 13px; color: var(--text-muted); }

/* ---------- Page Hero (inner pages) ---------- */
.l63xn {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}
.l63xn h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.l63xn h1 span { color: var(--orange); }
.l63xn p { font-size: 15px; color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .lumd8a0 { grid-template-columns: 1fr 1fr; }
  .dc4r2lue { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); z-index: 999; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 16px; font-size: 15px; }
  .hamburger { display: flex; }
  .88wetl { min-height: 420px; }
  .88wetl-stats { gap: 24px; }
  .lumd8a0 { grid-template-columns: 1fr; gap: 28px; }
  .d512rz6 { flex-direction: column; text-align: center; }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .howto-steps { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .6x1wb8 { display: none; }
}

@media (max-width: 480px) {
  .88wetl h1 { font-size: 1.9rem; }
  .88wetl-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .video-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .zxf283d5 { grid-template-columns: 1fr 1fr; }
  .sb96h { grid-template-columns: 1fr; }
  .j08fws { grid-template-columns: 1fr 1fr; }
  .h2eta { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.t6ctrl { text-align: center; margin-top: 36px; }
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 10px 28px;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-view-all:hover { background: var(--orange); color: var(--white); }

/* ---------- Lazy Load ---------- */
img[data-src] { opacity: 0; transition: opacity .4s; }
img.loaded { opacity: 1; }
