/* ================================================
   四虎视频 - 原创主题样式
   品牌色：玫瑰粉 #FF6B9D / 金糖 #FFD166 / 深夜紫 #1A0A2E
   ================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --pink: #FF6B9D;
  --gold: #FFD166;
  --purple: #1A0A2E;
  --dark: #0d0820;
  --card-bg: #1e1040;
  --border: rgba(255,107,157,.2);
  --text-muted: #9b8ab8;
  --gradient: linear-gradient(135deg, #FF6B9D 0%, #FFD166 100%);
  --gradient-dark: linear-gradient(135deg, #1A0A2E 0%, #2d1060 100%);
  --shadow: 0 8px 32px rgba(255,107,157,.15);
  --radius: 12px;
  --radius-lg: 20px;
}

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

/* ================================================
   TOP BAR
   ================================================ */
.bbole {
  background: rgba(26,10,46,.95);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: .8rem;
  color: var(--text-muted);
}
.bbole .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bbole a { color: var(--text-muted); font-size: .8rem; }
.bbole a:hover { color: var(--pink); }
.bbole-links { display: flex; gap: 16px; }

/* ================================================
   HEADER & NAV
   ================================================ */
.tx-header {
  background: rgba(13,8,32,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.tx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.tx-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.tx-logo img.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.tx-logo img.favicon-img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.tx-logo-text {
  display: flex;
  flex-direction: column;
}
.tx-logo-text .brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.tx-logo-text .brand-sub {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

/* Nav */
.tx-nav { display: flex; align-items: center; gap: 4px; }
.tx-nav a {
  color: #d4c5f0;
  font-size: .9rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .25s;
  white-space: nowrap;
}
.tx-nav a:hover, .tx-nav a.active {
  color: #fff;
  background: rgba(255,107,157,.15);
}
.tx-nav a.active { color: var(--pink); }

/* Mobile hamburger */
.tx-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.tx-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: all .3s;
}

/* Search Bar */
.tx-search-bar {
  background: rgba(26,10,46,.9);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.tx-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 16px;
}
.tx-search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: .9rem;
}
.tx-search-inner input::placeholder { color: var(--text-muted); }
.tx-search-btn {
  background: var(--gradient);
  border: none;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  transition: opacity .2s;
}
.tx-search-btn:hover { opacity: .85; }

/* ================================================
   CONTAINER
   ================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-fluid { padding: 0 20px; }

/* ================================================
   HERO BANNER SLIDER
   ================================================ */
.tx-hero {
  position: relative;
  overflow: hidden;
  height: 520px;
}
.tx-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.tx-hero-slide.active { opacity: 1; }
.tx-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ckv11co {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,8,32,.85) 40%, rgba(13,8,32,.2) 100%);
}
.tx-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
}
.a84vrl9d {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .08em;
}
.tx-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 560px;
}
.tx-hero-content h1 span { color: var(--pink); }
.tx-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 24px;
}
.mwbclk { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,157,.4); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

/* Hero dots */
.npmqosr {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.npmqosr span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
}
.npmqosr span.active { background: var(--pink); width: 24px; border-radius: 4px; }

/* ================================================
   STATS BAR
   ================================================ */
.u5lmw {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.u5lmw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.xatgz {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
}
.xatgz:last-child { border-right: none; }
.sgwal {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gjagkxr0 { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }

/* ================================================
   SECTION COMMON
   ================================================ */
.tx-section { padding: 60px 0; }
.tx-section-alt { background: rgba(255,255,255,.02); }
.tx-section-header { text-align: center; margin-bottom: 40px; }
.tx-section-tag {
  display: inline-block;
  background: rgba(255,107,157,.1);
  border: 1px solid rgba(255,107,157,.3);
  color: var(--pink);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .1em;
}
.tx-section-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.tx-section-header h2 span { color: var(--pink); }
.tx-section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.tx-section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.tx-section-header-flex h2 { font-size: 1.5rem; font-weight: 800; }
.tx-section-header-flex h2 span { color: var(--pink); }
.tx-view-all {
  color: var(--pink);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tx-view-all:hover { color: var(--gold); }

/* ================================================
   VIDEO CARDS
   ================================================ */
.tx-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tx-video-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tx-video-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.tx-video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(255,107,157,.4);
}
.tx-video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.tx-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.tx-video-card:hover .tx-video-thumb img { transform: scale(1.06); }
.tx-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px;
  height: 52px;
  background: rgba(255,107,157,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s;
  backdrop-filter: blur(4px);
}
.tx-video-card:hover .tx-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.tx-play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.tx-video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gradient);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.tx-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 6px;
}
.tx-video-info { padding: 14px; }
.tx-video-info h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tx-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-muted);
}
.tx-video-meta-left { display: flex; gap: 12px; align-items: center; }
.tx-video-meta span { display: flex; align-items: center; gap: 3px; }

/* ================================================
   CATEGORY TABS
   ================================================ */
.tx-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tx-tab {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}
.tx-tab:hover, .tx-tab.active {
  background: rgba(255,107,157,.15);
  border-color: var(--pink);
  color: var(--pink);
}

/* ================================================
   FEATURE MODULES (影视/娱乐/AI)
   ================================================ */
.tx-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tx-module-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.tx-module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform .3s;
}
.tx-module-card:hover::before { transform: scaleX(1); }
.tx-module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255,107,157,.3);
}
.tx-module-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,107,157,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.tx-module-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.tx-module-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.tx-module-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tx-module-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .7rem;
  padding: 3px 10px;
  border-radius: 10px;
}

/* ================================================
   EXPERTS SECTION
   ================================================ */
.tx-experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tx-expert-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all .3s;
}
.tx-expert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255,107,157,.3);
}
.tx-expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,107,157,.3);
}
.tx-expert-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.tx-expert-role {
  font-size: .75rem;
  color: var(--pink);
  margin-bottom: 10px;
  font-weight: 600;
}
.tx-expert-desc { font-size: .8rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.tx-expert-btns { display: flex; gap: 8px; justify-content: center; }
.btn-sm {
  font-size: .75rem;
  padding: 5px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: #d4c5f0;
  cursor: pointer;
  transition: all .2s;
}
.btn-sm:hover { border-color: var(--pink); color: var(--pink); }
.btn-sm-primary {
  font-size: .75rem;
  padding: 5px 14px;
  border-radius: 16px;
  background: var(--gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-sm-primary:hover { opacity: .85; }

/* ================================================
   PARTNERS
   ================================================ */
.tc9jmh3 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.l8e5c {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
  min-width: 120px;
  text-align: center;
}
.l8e5c:hover { border-color: var(--pink); color: var(--pink); }

/* ================================================
   HOWTO / GUIDE
   ================================================ */
.fjfh0 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.r78ps {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.r78ps-num {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 14px;
}
.r78ps h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.r78ps p { font-size: .82rem; color: var(--text-muted); }

/* ================================================
   FAQ
   ================================================ */
.a9n3e5q { max-width: 800px; margin: 0 auto; }
.o9faer5 {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.rx3vw9 {
  padding: 18px 20px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}
.rx3vw9:hover { color: var(--pink); }
.rx3vw9 .faq-icon {
  width: 22px;
  height: 22px;
  background: rgba(255,107,157,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.o9faer5.open .faq-icon { transform: rotate(45deg); }
.puehrq {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.o9faer5.open .puehrq { max-height: 300px; padding: 0 20px 18px; }

/* ================================================
   REVIEWS
   ================================================ */
.g6a3r {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.zkh4b {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all .3s;
}
.zkh4b:hover { border-color: rgba(255,107,157,.3); box-shadow: var(--shadow); }
.sjzm4ij8 { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hz87bsax {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ki0vts { font-weight: 700; font-size: .9rem; margin-bottom: 2px; }
.kvi4y30 { color: var(--gold); font-size: .85rem; }
.tn0i7l { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.dxdz6m0c { font-size: .75rem; color: rgba(155,138,184,.6); margin-top: 10px; }

/* ================================================
   CONTACT / COMMUNITY
   ================================================ */
.bikw8u {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.q8caxe h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.q8caxe h2 span { color: var(--pink); }
.vk7dzv1o {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.ht3hcw6s {
  width: 42px;
  height: 42px;
  background: rgba(255,107,157,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.vk7dzv1o h4 { font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.vk7dzv1o p { font-size: .82rem; color: var(--text-muted); }

.ddsfg { display: flex; gap: 20px; flex-wrap: wrap; }
.j989d { text-align: center; }
.j989d img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  border: 2px solid var(--border);
  object-fit: cover;
}
.j989d p { font-size: .75rem; color: var(--text-muted); margin-top: 6px; }

/* ================================================
   DANMU (弹幕)
   ================================================ */
.s308oln {
  position: relative;
  height: 48px;
  overflow: hidden;
  background: rgba(255,107,157,.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 24px;
}
.h5qh03ne {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: danmu-scroll 30s linear infinite;
}
.nqlybrt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 60px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.nqlybrt .danmu-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
@keyframes danmu-scroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ================================================
   SOCIAL SHARE
   ================================================ */
.q6mxcm4 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.v9brzksn { font-size: .85rem; color: var(--text-muted); }
.nydrp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: #d4c5f0;
  cursor: pointer;
  transition: all .2s;
}
.nydrp:hover { border-color: var(--pink); color: var(--pink); }

/* ================================================
   BREADCRUMB
   ================================================ */
.tx-breadcrumb {
  padding: 12px 0;
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tx-breadcrumb a { color: var(--text-muted); }
.tx-breadcrumb a:hover { color: var(--pink); }
.tx-breadcrumb .sep { color: rgba(155,138,184,.4); }
.tx-breadcrumb .current { color: var(--pink); }

/* ================================================
   PAGE HERO (内页)
   ================================================ */
.tx-page-hero {
  background: var(--gradient-dark);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 30px;
}
.tx-page-hero h1 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.tx-page-hero h1 span { color: var(--pink); }
.tx-page-hero p { color: var(--text-muted); font-size: .95rem; }

/* ================================================
   VIDEO PLAYER MODAL
   ================================================ */
.tnoriw {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.tnoriw.show { display: flex; }
.bbyla {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.ky0zx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.ky0zx h3 { font-size: 1rem; font-weight: 700; }
.akmr6 {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.akmr6:hover { background: rgba(255,107,157,.3); }
.q9uij6z { position: relative; aspect-ratio: 16/9; background: #000; }
.q9uij6z video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dal3n1zg { padding: 14px 20px; font-size: .82rem; color: var(--text-muted); }

/* ================================================
   FOOTER
   ================================================ */
.tx-footer {
  background: #08041a;
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}
.lyqofdyi {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.qjjqc0m .brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.qjjqc0m p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.ny0bls h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.ny0bls ul li { margin-bottom: 8px; }
.ny0bls ul li a { font-size: .85rem; color: var(--text-muted); }
.ny0bls ul li a:hover { color: var(--pink); }
.inschk {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: var(--text-muted);
}
.inschk a { color: var(--text-muted); }
.inschk a:hover { color: var(--pink); }
.pl099chj { color: var(--pink); font-weight: 600; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .tx-video-grid { grid-template-columns: repeat(3, 1fr); }
  .tx-experts-grid { grid-template-columns: repeat(2, 1fr); }
  .lyqofdyi { grid-template-columns: 1fr 1fr; }
  .u5lmw-grid { grid-template-columns: repeat(2, 1fr); }
  .u5lmw-grid .xatgz:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .tx-hero { height: 380px; }
  .tx-hero-content h1 { font-size: 1.8rem; }
  .tx-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,8,32,.98); padding: 16px 20px; border-bottom: 1px solid var(--border); }
  .tx-nav.open { display: flex; }
  .tx-hamburger { display: flex; }
  .tx-video-grid { grid-template-columns: repeat(2, 1fr); }
  .tx-video-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tx-module-grid { grid-template-columns: 1fr; }
  .fjfh0 { grid-template-columns: repeat(2, 1fr); }
  .g6a3r { grid-template-columns: 1fr; }
  .bikw8u { grid-template-columns: 1fr; }
  .lyqofdyi { grid-template-columns: 1fr; }
  .tx-experts-grid { grid-template-columns: repeat(2, 1fr); }
  .tx-section { padding: 40px 0; }
}
@media (max-width: 480px) {
  .tx-video-grid { grid-template-columns: 1fr; }
  .tx-video-grid-3 { grid-template-columns: 1fr; }
  .tx-experts-grid { grid-template-columns: 1fr; }
  .fjfh0 { grid-template-columns: 1fr; }
  .tx-hero-content h1 { font-size: 1.4rem; }
  .tx-hero { height: 300px; }
  .u5lmw-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   UTILITY
   ================================================ */
.text-pink { color: var(--pink); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.fw-bold { font-weight: 700; }
.hidden { display: none; }
