/* ============================================
   抖荫短视频 - 原创样式表
   品牌色系：深夜蓝黑 + 活力橙 + 科技青绿
   ============================================ */

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

:root {
  --primary: #1A1E2E;
  --accent-orange: #FF6B35;
  --accent-teal: #00D4AA;
  --bg-dark: #0F1219;
  --text-light: #E8ECF1;
  --text-muted: #8B95A5;
  --card-bg: #1E2336;
  --card-hover: #252A40;
  --border-color: #2A3048;
  --gradient-orange: linear-gradient(135deg, #FF6B35, #FF8F5E);
  --gradient-teal: linear-gradient(135deg, #00D4AA, #00F0C0);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 32px rgba(255,107,53,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.simflqqj {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 18, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.egfn63 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.k7anhx97 img {
  height: 40px;
  width: auto;
}

.k7anhx97 span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 1px;
}

.p9jp6uh {
  display: flex;
  align-items: center;
  gap: 6px;
}

.p9jp6uh a {
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.p9jp6uh a:hover,
.p9jp6uh a.active {
  color: var(--accent-orange);
  background: rgba(255,107,53,0.1);
}

.p9u7w4 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.p9u7w4 span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   Search Bar
   ============================================ */
.zahdvn {
  background: var(--primary);
  padding: 16px 0;
  margin-top: 68px;
  border-bottom: 1px solid var(--border-color);
}

.afp54 {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.afp54:focus-within {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.15);
}

.afp54 input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 12px 20px;
  font-size: 0.95rem;
  outline: none;
}

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

.afp54 button {
  background: var(--gradient-orange);
  border: none;
  color: #fff;
  padding: 12px 28px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.afp54 button:hover {
  opacity: 0.9;
}

/* ============================================
   Banner / Hero Section
   ============================================ */
.pzahyr2z {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.pzahyr2z .yr64wc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.6);
}

.pzahyr2z .l0n8254p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15,18,25,0.3) 0%, rgba(15,18,25,0.85) 100%);
}

.sj3mw7i {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.sj3mw7i h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.sj3mw7i h1 .bydv6ak {
  color: var(--accent-orange);
}

.sj3mw7i p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

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

.izd2da {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.izd2da:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
  color: #fff;
}

.jspq01h {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-teal);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--accent-teal);
  cursor: pointer;
  transition: var(--transition);
}

.jspq01h:hover {
  background: var(--accent-teal);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

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

.ckc3rg {
  background: var(--primary);
}

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

.rnyd2e1f h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.rnyd2e1f h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 3px;
}

.rnyd2e1f p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 16px;
}

/* ============================================
   Video Card Grid
   ============================================ */
.f3xc2u {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

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

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

.cg0109q {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.cg0109q img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.zi3vgvz:hover .cg0109q img {
  transform: scale(1.05);
}

.qcf9t {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: var(--transition);
}

.cg0109q:hover .qcf9t {
  opacity: 1;
}

.e6ouuw9 {
  width: 56px;
  height: 56px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.e6ouuw9::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: 3px;
}

.e6ouuw9:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,107,53,0.5);
}

.fdjddbiy {
  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;
  font-weight: 500;
}

.pjq3k4sk {
  padding: 16px;
}

.pjq3k4sk h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.x0cns {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

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

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

.d1nxai5b .tag {
  background: rgba(0,212,170,0.1);
  color: var(--accent-teal);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============================================
   Feature Cards (游戏传媒 / AI赋能)
   ============================================ */
.ev4bc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

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

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

.o8urfuv {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255,107,53,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.hlv0z h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* ============================================
   Expert / Team Section
   ============================================ */
.v21pl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

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

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

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

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

.gtmxt40 h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.nwix9 {
  color: var(--accent-teal);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.gtmxt40 p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.mryxzkl {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mryxzkl a {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  transition: var(--transition);
}

.mryxzkl a:hover {
  background: var(--accent-teal);
  color: var(--bg-dark);
}

/* ============================================
   Reviews / Testimonials
   ============================================ */
.g1fad3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

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

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

.t1mdzlg {
  color: var(--accent-orange);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.j0wua3 blockquote {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

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

.lsh0t4p-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.lsh0t4p-info strong {
  font-size: 0.9rem;
  display: block;
}

.lsh0t4p-info span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

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

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

.rft8h {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.98rem;
  user-select: none;
}

.rft8h::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-orange);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.a9u09r.active .rft8h::after {
  content: '-';
}

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

.y8e14y-inner {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.a9u09r.active .y8e14y {
  max-height: 300px;
}

/* ============================================
   Contact Section
   ============================================ */
.rhk82lgn {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

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

.tdja4 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent-teal);
}

.tdja4 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.tdja4 img {
  max-width: 160px;
  margin: 16px auto 0;
  border-radius: var(--radius-sm);
}

/* ============================================
   How-To Guide
   ============================================ */
.n2rzi {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.rvzt2 {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  position: relative;
  counter-increment: step;
}

.rvzt2::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.rvzt2 h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 6px;
}

.rvzt2 p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   Share Buttons
   ============================================ */
.w3wq1vb {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.td9ji {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.td9ji:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: #fff;
}

.tzvrga { background: #07C160; }
.jp4g7 { background: #E6162D; }
.un56y { background: #161823; border: 1px solid #333; }
.ji7zi { background: #00A1D6; }

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

.k44oqu06 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.en18zc h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent-orange);
}

.en18zc p,
.en18zc a {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 2;
  display: block;
}

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

.en18zc img {
  max-width: 120px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.b3ztv1w {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.zrh52 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.zrh52 img {
  height: 32px;
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  margin-top: 68px;
  background: var(--primary);
  border-bottom: 1px solid var(--border-color);
}

.z0tw4cry {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
}

.z0tw4cry li::after {
  content: '>';
  margin-left: 8px;
  color: var(--text-muted);
}

.z0tw4cry li:last-child::after {
  display: none;
}

.z0tw4cry li:last-child {
  color: var(--text-muted);
}

/* ============================================
   Inner Page Content
   ============================================ */
.ifm4duh {
  padding: 48px 0 72px;
}

.ifm4duh h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ifm4duh h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--accent-orange);
}

.ifm4duh p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.rj4gsih {
  border-radius: var(--radius);
  margin: 24px 0;
  overflow: hidden;
}

/* ============================================
   Community Cards
   ============================================ */
.e1jci1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

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

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

.c58m5cl9 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.gcfditq h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.gcfditq p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================================
   Partner Logo Wall
   ============================================ */
.d42d7 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.q5x4lkgx {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 20px 32px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

/* ============================================
   Lazy Loading
   ============================================ */
.t9656rxg {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.t9656rxg.loaded {
  opacity: 1;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  .p9jp6uh {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(15,18,25,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border-color);
  }

  .p9jp6uh.open {
    display: flex;
  }

  .p9jp6uh a {
    padding: 12px 16px;
    width: 100%;
    text-align: center;
  }

  .p9u7w4 {
    display: flex;
  }

  .sj3mw7i h1 {
    font-size: 1.8rem;
  }

  .sj3mw7i p {
    font-size: 1rem;
  }

  .pzahyr2z {
    min-height: 400px;
  }

  .section {
    padding: 48px 0;
  }

  .rnyd2e1f h2 {
    font-size: 1.5rem;
  }

  .f3xc2u {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .k44oqu06 {
    grid-template-columns: 1fr 1fr;
  }

  .eegtl {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .egfn63 {
    height: 56px;
  }

  .zahdvn {
    margin-top: 56px;
  }

  .breadcrumb {
    margin-top: 56px;
  }

  .sj3mw7i h1 {
    font-size: 1.5rem;
  }

  .k44oqu06 {
    grid-template-columns: 1fr;
  }

  .f3xc2u {
    grid-template-columns: 1fr;
  }

  .ev4bc {
    grid-template-columns: 1fr;
  }
}

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

.zou12yh {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   Authority / Trust Section
   ============================================ */
.o995fez {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

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

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

.t0q48s6s {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.mxl0x h4 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
}

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

.cpgla8s {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.bb2thpk {
  background: rgba(0,212,170,0.08);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  border: 1px solid rgba(0,212,170,0.15);
}

/* ============================================
   Update Bar
   ============================================ */
.ww8zqra {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,107,53,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,107,53,0.15);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.kgt0jg {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ============================================
   Video Date Badge
   ============================================ */
.yc8itt {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,212,170,0.85);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============================================
   Hero Stats
   ============================================ */
.ubzi4z {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gpgngko1 {
  text-align: center;
}

.gpgngko1 strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.2;
}

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

/* ============================================
   MCP Service Frontend (Decorative)
   ============================================ */
.ykqkhq4j {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border-color);
  margin-top: 16px;
}

.ykqkhq4j .z2s60rlc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent-teal);
}

.ykqkhq4j .htb4at3l {
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
