/* Existing landing-v3 modules, taken from the current rendered landing page. */

/* ============ INTERACTIVE LIVE DEMO WIDGET ============ */
.live-demo {
  width: 100%; max-width: 900px;
  display: flex; flex-direction: column; gap: 12px;
  font-family: system-ui, sans-serif;
}
.platform-tabs {
  display: flex; gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  width: 100%;
}
.ptab {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 6px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(242, 242, 255, 0.55);
  font-size: 0.8rem; font-weight: 600;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.ptab:hover { color: var(--white); background: rgba(255, 255, 255, 0.04); }
.ptab.active {
  background: rgba(245, 232, 196, 0.14);
  color: #f8efd6;
  box-shadow: inset 0 0 0 1px rgba(232, 201, 123, 0.3);
}
.ptab.active[data-pf="twitch"] { background: rgba(145, 70, 255, 0.2); color: #c4a8ff; box-shadow: inset 0 0 0 1px rgba(145, 70, 255, 0.45); }
.ptab.active[data-pf="youtube"] { background: rgba(255, 60, 60, 0.18); color: #ff8a8a; box-shadow: inset 0 0 0 1px rgba(255, 60, 60, 0.4); }
.ptab.active[data-pf="kick"] { background: rgba(83, 252, 24, 0.15); color: #9dff7a; box-shadow: inset 0 0 0 1px rgba(83, 252, 24, 0.4); }
.ptab.active[data-pf="tiktok"] { background: rgba(255, 0, 100, 0.18); color: #ff7ab4; box-shadow: inset 0 0 0 1px rgba(255, 0, 100, 0.4); }
.platform-frame {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
  background: #09090f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.85), 0 0 80px -20px rgba(232, 201, 123, 0.15);
  position: relative;
}
.platform-stage {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: #000;
  border-radius: 8px; overflow: hidden;
  transition: none;
}
.platform-stage.vertical { position: absolute !important; top: 0; left: 0; right: 0; bottom: 0; width: 100% !important; height: 100% !important; max-width: none; margin: 0; }
.platform-stage img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  transition: opacity 0.3s ease;
}
.platform-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(8, 8, 15, 0.95);
  color: rgba(242, 242, 255, 0.5);
}
.fallback-icon { font-size: 2.5rem; margin-bottom: 8px; }
.fallback-text { font-size: 0.85rem; }
.lang-row {
  display: flex; align-items: end; gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}
.lang-picker { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.lang-picker label {
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(242, 242, 255, 0.45);
}
.lang-picker select {
  background: rgba(8, 8, 15, 0.6);
  border: 1px solid rgba(232, 201, 123, 0.18);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 0.92rem; font-family: system-ui, sans-serif; font-weight: 600;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M5 6L0 0h10z' fill='%23ffffff'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.lang-picker select:focus { outline: none; border-color: rgba(232, 201, 123, 0.5); }
.lang-arrow {
  font-size: 1.4rem; color: #e8c97b;
  padding-bottom: 6px;
  font-family: system-ui, sans-serif;
}
.sub-preview {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px;
  background: rgba(8, 8, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  text-align: center;
  min-height: 90px;
  justify-content: center;
}
.sub-original {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0,0,0,0.82);
  color: rgba(242, 242, 255, 0.92);
  border-radius: 6px;
  font-size: 0.92rem; font-weight: 500;
  font-family: system-ui, sans-serif;
  align-self: center;
  max-width: 100%;
  transition: all 0.3s ease;
}
.sub-translated {
  display: inline-block;
  padding: 8px 16px;
  background: #f8efd6;
  color: #1a1408;
  border-radius: 8px;
  font-size: 1.05rem; font-weight: 700;
  font-family: system-ui, sans-serif;
  align-self: center;
  max-width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(232, 201, 123, 0.2);
}
@media (max-width: 600px) {
.ptab span:not(svg) { font-size: 0.72rem; }
.ptab { padding: 7px 4px; gap: 4px; }
.lang-row { padding: 10px 12px; gap: 8px; }
.lang-picker select { font-size: 0.85rem; padding: 7px 8px; padding-right: 24px; }
.sub-translated { font-size: 0.95rem; }
}
/* ============ DYNAMIC SUBTITLE OVERLAY (positioned per platform) ============ */
.platform-stage { position: relative; }
.overlay-sub {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  pointer-events: none;
  width: auto;
  max-width: 60%;
  transition: top 0.3s ease, opacity 0.25s ease;
  z-index: 5;
}
.overlay-sub-original {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.78);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 3px;
  font-size: 0.58rem; font-weight: 500;
  font-family: system-ui, sans-serif;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.overlay-sub-translated {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  border-radius: 4px;
  font-size: 0.68rem; font-weight: 700;
  font-family: system-ui, sans-serif;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
/* Per-platform position — centered in PLAYER FRAME (not whole stage), in middle of video content */
/* Desktop platforms have chat on right side, so horizontal center shifts LEFT from 50% */
.platform-stage[data-pf="twitch"]  .overlay-sub { top: 72%; bottom: auto; left: 38%; max-width: 46%; }
.platform-stage[data-pf="youtube"] .overlay-sub { top: 70%; bottom: auto; left: 38%; max-width: 42%; }
.platform-stage[data-pf="kick"]    .overlay-sub { top: 72%; bottom: auto; left: 37%; max-width: 42%; }
.platform-stage[data-pf="tiktok"]  .overlay-sub { top: 65%; bottom: auto; left: 50%; max-width: 70%; }
/* Vertical TikTok: keep them small but readable */
.platform-stage.vertical .overlay-sub-original  { font-size: 0.55rem; padding: 2px 7px; }
.platform-stage.vertical .overlay-sub-translated { font-size: 0.62rem; padding: 3px 9px; }
/* Typewriter caret */
/* Empty subtitle shouldn't render its empty pill */
.overlay-sub-original:empty,
.overlay-sub-translated:empty {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
@media (max-width: 600px) {
.overlay-sub-original  { font-size: 0.68rem; padding: 4px 8px; }
.overlay-sub-translated { font-size: 0.78rem; padding: 5px 11px; }
}
.hero-right {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

/* --- hero inline overrides (2026) --- */
#hero-livedemo, #liveDemo, #liveDemo *{font-family:'Inter',system-ui,sans-serif !important;}
#hero-livedemo{position:relative;inset:auto;margin:0 auto;width:100%;max-width:100%;height:auto;z-index:40;}
#liveDemo{max-width:none !important;width:100% !important;margin:0 !important;}
#liveDemo .lang-picker{border-radius:999px !important;}
#liveDemo .lang-picker select{border-radius:999px !important;}
#liveDemo .ptab{border-radius:999px !important;}
#liveDemo .ptab{font-size:0.66rem !important;padding:4px 9px !important;gap:4px !important;}
#liveDemo .ptab svg{width:11px !important;height:11px !important;}
#liveDemo .lang-arrow{color:#ffffff !important;}
#liveDemo .lang-picker select{border-color:rgba(255,255,255,0.22) !important;}
#liveDemo .lang-picker select:focus{border-color:rgba(255,255,255,0.45) !important;}
#liveDemo .overlay-sub-original, #liveDemo .overlay-sub-translated{font-size:clamp(0.82rem,1.5vw,1.08rem) !important;padding:5px 12px !important;}



/* ?????? Dark-theme overrides for globe sections ?????? */
.gb-section { background: transparent; position: relative; z-index: 1; }

.gb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: 960px;
  margin: 0 auto;
}
.gb-stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.gb-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.gb-stat-number {
  font-weight: 800;
  font-size: clamp(2rem,4vw,3.5rem);
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg,rgba(255,255,255,0.9),rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
}
.gb-stat-label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(242,242,255,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ?????? How It Works ?????? */
.gb-section-eyebrow {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f2f2ff;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 1.1;
}
.gb-section-eyebrow::before,
.gb-section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
}
.gb-section-title {
  font-weight: 800;
  font-size: clamp(1.8rem,4vw,3rem);
  letter-spacing: -.03em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 4rem;
  color: #f2f2ff;
}
.gb-steps-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.gb-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gb-step:last-child { border-bottom: none; }
.gb-step-reverse { direction: rtl; }
.gb-step-reverse > * { direction: ltr; }
.gb-step-accent {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.gb-step-accent-line {
  width: 24px; height: 3px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
}
.gb-step-accent-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(242,242,255,.35);
}
.gb-step-title {
  font-weight: 700;
  font-size: clamp(1rem,2vw,1.3rem);
  letter-spacing: -.01em;
  line-height: 1.4;
  color: #f2f2ff;
  margin-bottom: 1rem;
}
.gb-step-desc {
  font-size: .95rem;
  color: rgba(242,242,255,.55);
  line-height: 1.75;
  max-width: 360px;
}
.gb-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-height: 180px;
}

/* ?????? Features ?????? */
.gb-features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.gb-feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.gb-feature-spotlight {
  border: 1px solid rgba(255,255,255,0.22) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 6px 24px rgba(255,255,255,0.04);
}
.gb-feature-spotlight:hover {
  border-color: rgba(255,255,255,0.4) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%) !important;
  transform: translateY(-2px);
}

.gb-feature-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 6px 20px rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.gb-feature-icon {
  font-size: 1.75rem;
  margin-bottom: .875rem;
  color: rgba(255,255,255,0.75);
}
.gb-feature-title {
  font-weight: 700;
  font-size: .95rem;
  color: #f2f2ff;
  margin-bottom: .5rem;
}
.gb-feature-desc {
  font-size: .875rem;
  color: rgba(242,242,255,0.78);
  line-height: 1.7;
}

/* ?????? Pricing ?????? */
.gb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: .75rem;
  max-width: 1280px;
  margin: 2.5rem auto 0;
}
.gb-pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.gb-pricing-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 8px 24px rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.gb-pricing-card.popular {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 4px 20px rgba(255,255,255,0.11);
}
.gb-popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,rgba(255,255,255,0.9),rgba(255,255,255,0.85));
  color: #08080f;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255,255,255,0.18);
}
.gb-pricing-tier {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(242,242,255,0.92);
  margin-bottom: 1.25rem;
}
.gb-pricing-price {
  font-weight: 800;
  font-size: clamp(2rem,4vw,3rem);
  letter-spacing: -.04em;
  color: #f2f2ff;
  line-height: 1;
  margin-bottom: .25rem;
}
.gb-pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(242,242,255,.45);
}
.gb-pricing-cadence {
  font-size: .78rem;
  color: rgba(242,242,255,0.88);
  margin-bottom: 1.75rem;
}
.gb-pricing-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 1.75rem;
}
.gb-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.gb-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(242,242,255,0.92);
  line-height: 1.5;
}
.gb-check { flex-shrink: 0; color: rgba(255,255,255,0.9); font-weight: 700; }
.gb-pricing-features { flex: 1; }
.gb-btn-pricing {
  display: block;
  text-align: center;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  border: 1.5px solid rgba(255,255,255,.12);
  color: #f2f2ff;
  background: transparent;
  margin-top: auto;
}
.gb-btn-pricing:hover { background: rgba(255,255,255,.06); }
.gb-pricing-card.popular .gb-btn-pricing {
  background: linear-gradient(135deg,rgba(255,255,255,0.9),rgba(255,255,255,0.85));
  color: #08080f;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(255,255,255,0.18);
}
.gb-pricing-card.popular .gb-btn-pricing:hover { opacity: .88; }

/* ?????? CTA ?????? */
.gb-cta-title {
  font-weight: 900;
  font-size: clamp(2rem,5vw,4rem);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: #f2f2ff;
  margin-bottom: 1.25rem;
}
.gb-cta-sub {
  font-size: 1.1rem;
  color: rgba(242,242,255,.5);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.gb-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #08080f;
  background: linear-gradient(135deg,rgba(255,255,255,0.9),rgba(255,255,255,0.85));
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(255,255,255,0.18);
}
.gb-btn-cta:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,0.18); }

/* ?????? Footer ?????? */
#gb-footer {
  background: #050508;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  position: relative;
  z-index: 30;
}
.gb-footer-inner { max-width: 1200px; margin: 0 auto; }
.gb-footer-wordmark-wrap {
  padding: 24px 32px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.gb-footer-wordmark {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f0eeff;
  text-decoration: none;
  line-height: 1;
}
.gb-footer-wordmark-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: right;
  line-height: 1.7;
  max-width: 300px;
  flex-shrink: 0;
}
.gb-footer-wordmark-sub a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.gb-footer-wordmark-sub a:hover { color: #fff; }
.gb-footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gb-footer-logo { display: none; }
.gb-footer-brand { display: none; }
.gb-footer-col { padding-right: 24px; }
.gb-footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,242,255,0.35);
  margin-bottom: 20px;
}
.gb-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.gb-footer-col ul li a {
  color: rgba(242,242,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
  z-index: 30;
  pointer-events: auto;
}
.gb-footer-col ul li a:hover { color: #fff; }
.gb-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  font-size: 12px;
  color: rgba(242,242,255,0.3);
}
.gb-footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.gb-footer-bottom a:hover { color: #fff; }

/* ?????? Responsive ?????? */
@media (max-width: 900px) {
  .gb-stats-grid { grid-template-columns: repeat(2,1fr); }
  .gb-step { grid-template-columns: 1fr; gap: 1.5rem; }
  .gb-step-reverse { direction: ltr; }
  .gb-features-grid { grid-template-columns: repeat(2,1fr); }
  .gb-pricing-grid { grid-template-columns: repeat(2,1fr); }
  .gb-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 32px 24px; }
  .gb-footer-wordmark-wrap { padding: 40px 24px 32px; flex-direction: column; align-items: flex-start; }
  .gb-footer-wordmark-sub { text-align: left; }
  .gb-footer-bottom { padding: 16px 24px; flex-direction: column; gap: 6px; text-align: center; }
  #gb-pricing > div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  #gb-pricing > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .gb-features-grid { grid-template-columns: 1fr; }
  .gb-pricing-grid { grid-template-columns: 1fr; }
  .gb-footer-top { grid-template-columns: 1fr; }
  .gb-stat-item::after { display: none; }
}


.cap-wrap{max-width:1100px;margin:0 auto;}
.cap-grid{margin:34px auto 0;display:grid;grid-template-columns:repeat(3,1fr);border:1px solid rgba(255,255,255,0.10);border-radius:16px;background:rgba(255,255,255,0.012);}
.cap{padding:34px 30px;border-right:1px solid rgba(255,255,255,0.10);border-bottom:1px solid rgba(255,255,255,0.10);position:relative;text-decoration:none;color:inherit;display:block;transition:background .2s ease;}
.cap:hover{background:rgba(255,255,255,0.03);}
.cap:nth-child(3n){border-right:0;}
.cap:nth-child(n+4){border-bottom:0;}
.cap-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px;color:rgba(242,242,255,0.55);}
.cap-top svg{width:20px;height:20px;}
.cap-k{font-size:11px;letter-spacing:.16em;color:rgba(242,242,255,0.26);font-family:'Satoshi',system-ui,sans-serif!important;}
.cap-title{font-size:1.06rem;letter-spacing:.01em;margin-bottom:9px;color:#f2f2ff;font-family:'Tanker',system-ui,sans-serif!important;}
.cap-desc{font-size:.86rem;line-height:1.55;color:rgba(242,242,255,0.55);font-family:'Satoshi',system-ui,sans-serif!important;font-weight:400;}
.cap-new{position:absolute;top:26px;right:26px;background:#00E696;color:#04130c;font-size:9px;font-weight:800;padding:2px 7px;border-radius:5px;letter-spacing:.5px;font-family:'Satoshi',system-ui,sans-serif!important;}
@media(max-width:880px){.cap-grid{grid-template-columns:1fr;}.cap{border-right:0!important;border-bottom:1px solid rgba(255,255,255,0.10)!important;}.cap:last-child{border-bottom:0!important;}}


html,body{overflow-x:hidden;height:auto}
.demo-section{contain:layout style;content-visibility:auto;contain-intrinsic-size:0 400px;position:relative;z-index:10;padding:100px 0 80px;background:#08080f;position:relative;overflow:hidden}
.demo-section::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:600px;height:300px;background:radial-gradient(ellipse,rgba(255,255,255,0.06) 0%,transparent 70%);pointer-events:none}
.demo-inner{max-width:1280px;margin:0 auto;padding:0 2rem}
.demo-eyebrow{text-align:center;font-size:.75rem;font-weight:700;letter-spacing:.14em;color:rgba(255,255,255,0.75);text-transform:uppercase;margin-bottom:16px}
.demo-title{text-align:center;font-size:clamp(1.8rem,3.2vw,2.8rem);font-weight:900;letter-spacing:-.04em;color:#f2f2ff;margin-bottom:40px;line-height:1.1}
.demo-title span{background:linear-gradient(90deg,rgba(255,255,255,0.9),rgba(255,255,255,0.7));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
@media(min-width:900px){.demo-title{white-space:nowrap}}
.demo-grid{display:grid;grid-template-columns:1.2fr 0.8fr;gap:2rem;align-items:start}
@media(max-width:899px){.demo-grid{grid-template-columns:1fr}.cp-panel{min-width:0}}
/* Stream window */
.hero-stream-window{width:100%;border-radius:14px;overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.06);position:relative;background:#09090f}
.hero-stream-titlebar{background:#0d0d14;padding:10px 16px;display:flex;align-items:center;gap:8px}
.hero-stream-dot{width:12px;height:12px;border-radius:50%}
.hero-stream-dot-r{background:#ff5f57}.hero-stream-dot-y{background:#febc2e}.hero-stream-dot-g{background:#28c840}
.hero-stream-titlebar-text{flex:1;text-align:center;font-size:12px;font-weight:600;color:rgba(255,255,255,.5);margin-left:-60px}

.hero-loading-overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;background:rgba(0,0,0,0.45);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);z-index:5;pointer-events:none;transition:opacity .35s ease,visibility .35s ease;opacity:1;visibility:visible;}
.hero-loading-overlay.is-hidden{opacity:0;visibility:hidden;}
.hero-loading-spinner{width:44px;height:44px;border:3px solid rgba(255,255,255,0.18);border-top-color:#fff;border-radius:50%;animation:hero-spin .9s linear infinite;}
.hero-loading-text{font-size:11px;font-weight:700;letter-spacing:0.22em;color:rgba(255,255,255,0.92);text-shadow:0 1px 2px rgba(0,0,0,0.4);font-family:system-ui,-apple-system,sans-serif;}
@keyframes hero-spin{to{transform:rotate(360deg);}}

.hero-stream-live-badge{background:#ef4444;color:#fff;font-size:12px;font-weight:700;padding:2px 8px;border-radius:4px;letter-spacing:.05em}
.hero-stream-video-wrap{position:relative;aspect-ratio:16/9;background:#09090f;overflow:hidden}
.hero-stream-video-wrap video{width:100%;height:100%;object-fit:cover;display:block}
.hero-stream-subs{position:absolute;bottom:16px;top:auto;left:0;right:0;text-align:center;padding:0 40px;pointer-events:none;display:flex;flex-direction:column;align-items:center;gap:3px}
.hero-stream-orig{font-size:clamp(.85rem,2vw,1.15rem);font-weight:700;color:#fff;text-shadow:2px 2px 8px rgba(0,0,0,.95);min-height:1.4em;margin-bottom:4px}
.hero-stream-trans{font-size:clamp(.85rem,2vw,1.15rem);font-weight:700;color:#ff3b30;text-shadow:2px 2px 8px rgba(0,0,0,.95);min-height:1.4em}
.hero-stream-controls{position:absolute;top:10px;left:10px;display:flex;gap:4px;z-index:10}
.hero-stream-ctrl-btn{background:rgba(0,0,0,.55);border:none;border-radius:6px;padding:5px 8px;cursor:pointer;color:#fff;font-size:14px;backdrop-filter:blur(4px)}
/* Control panel */
.cp-panel{background:#09090f;border:1px solid rgba(255,255,255,0.12);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 8px 32px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.05);}
.cp-titlebar{background:#141414;padding:10px 16px;display:flex;align-items:center;gap:6px;border-bottom:1px solid rgba(255,255,255,0.08);flex-shrink:0}
.cp-dot{width:12px;height:12px;border-radius:50%;flex-shrink:0}
.cp-red{background:#ff5f57}.cp-yellow{background:#febc2e}.cp-green{background:#28c840}
.cp-titlelabel{flex:1;font-size:12px;font-weight:600;color:rgba(255,255,255,.35);margin-left:6px}
.cp-livebadge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,0.85);font-size:10px;font-weight:700;padding:2px 8px;border-radius:10px;letter-spacing:.05em;white-space:nowrap}
.cp-body{padding:14px;display:flex;flex-direction:column;gap:10px;}
.cp-field{display:flex;flex-direction:column;gap:6px}
.cp-fieldlabel{font-size:10px;font-weight:700;letter-spacing:.12em;color:rgba(255,255,255,.3)}
.cp-select{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);color:#e2e8f0;padding:7px 12px;border-radius:8px;font-size:13px;font-weight:600;flex:1;cursor:pointer;font-family:system-ui,sans-serif}
.cp-lang-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:5px;overflow-y:auto;max-height:340px;scrollbar-width:thin;scrollbar-color:rgba(255,255,255,0.15) transparent;}
.hero-lang-pill{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.7);padding:6px 8px;border-radius:7px;font-size:12px;font-weight:600;cursor:pointer;text-align:center;transition:all .15s}
.hero-lang-pill:hover{background:rgba(255,255,255,0.08);border-color:rgba(255,255,255,0.18)}
.hero-lang-pill.active{background:rgba(255,255,255,0.11);border-color:rgba(255,255,255,0.9);color:#f2f2ff}
.cp-stats{display:flex;border-top:1px solid rgba(255,255,255,0.08);padding-top:10px;margin-top:8px}
.cp-stat{flex:1;text-align:center}
.cp-statnum{display:block;font-size:1.05rem;font-weight:800;color:rgba(255,255,255,0.75);line-height:1.2}
.cp-statlabel{font-size:10px;color:rgba(255,255,255,.3);text-transform:uppercase;letter-spacing:.08em}
.cp-ctabtn{display:block;background:linear-gradient(135deg,rgba(255,255,255,0.9),rgba(255,255,255,0.85));color:#08080f;text-align:center;padding:11px 16px;border-radius:9px;font-size:13px;font-weight:700;text-decoration:none;transition:opacity .2s;margin-top:auto}
.cp-ctabtn:hover{opacity:.85}
.stream-toast{display:flex;align-items:center;gap:0;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07);border-radius:8px;overflow:hidden;margin-top:8px;}
.st-tog{flex:1;padding:10px 12px;background:transparent;border:none;color:rgba(255,255,255,0.35);font-size:9.5px;font-weight:800;letter-spacing:.13em;cursor:pointer;transition:all .18s;font-family:system-ui,sans-serif;}
.st-tog.active{color:#f2f2ff;background:rgba(255,255,255,0.06);}
.st-tog:hover{color:rgba(255,255,255,0.65);}
.st-divider{width:1px;height:36px;background:rgba(255,255,255,0.07);flex-shrink:0;}
.st-size-group{display:flex;align-items:center;padding:0 8px;gap:4px;}
.st-sz{background:transparent;border:1px solid rgba(255,255,255,0.1);border-radius:4px;color:rgba(255,255,255,0.3);font-size:9px;font-weight:800;padding:3px 7px;cursor:pointer;transition:all .15s;letter-spacing:.05em;}
.st-sz.active{background:rgba(255,255,255,0.1);color:#f2f2ff;border-color:rgba(255,255,255,0.2);}
.st-sz:hover{color:rgba(255,255,255,0.6);}
.cp-tog{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.6);padding:5px 10px;border-radius:6px;font-size:11px;font-weight:700;cursor:pointer;letter-spacing:.06em;transition:all .15s}
.cp-tog.active{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.4);color:#f2f2ff}
.cp-size-btn{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.7);width:30px;height:30px;border-radius:6px;font-size:13px;font-weight:800;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s}
.cp-size-btn:hover{background:rgba(255,255,255,0.12)}
.hero-stream-subs.tiktok-style .hero-stream-orig{background:rgba(0,0,0,0.85);padding:3px 10px;border-radius:0;display:inline-block}
.hero-stream-subs.tiktok-style .hero-stream-trans{background:#ff3b30;color:#fff!important;padding:3px 10px;border-radius:0;display:inline-block;text-shadow:none}


.landing-channels{background:#08080f;position:relative;z-index:20;isolation:isolate;padding:3.5rem 2rem 4.5rem;}
.landing-channels-inner{max-width:1120px;margin:0 auto;}
.landing-channels-title{display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:10px;text-align:center;}
.landing-channels-bobo{width:58px;height:58px;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.45));}
.landing-channels-title h2{margin:0;color:#f2f2ff;font-size:clamp(1.65rem,3vw,2.5rem);font-weight:800;letter-spacing:0;line-height:1;}
.landing-channels-status{min-height:22px;margin:0 0 26px;text-align:center;color:rgba(242,242,255,.48);font-size:.82rem;letter-spacing:0;}
.landing-channel-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;min-height:184px;}
.landing-channel-card{min-width:0;min-height:85px;display:flex;align-items:center;gap:13px;padding:14px 15px;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:#11111b;color:#f2f2ff;text-decoration:none;position:relative;overflow:hidden;transition:transform .18s,border-color .18s,background .18s;}
.landing-channel-card:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.24);background:#171724;}
.landing-channel-card.is-live{border-color:rgba(255,59,48,.42);}
.landing-channel-avatar{width:54px;height:54px;border-radius:50%;object-fit:cover;flex:0 0 54px;background:#fff;color:#08080f;display:flex;align-items:center;justify-content:center;font-size:1.15rem;font-weight:800;text-transform:uppercase;}
.landing-channel-card.is-live .landing-channel-avatar{box-shadow:0 0 0 2px #ff3b30;}
.landing-channel-meta{min-width:0;flex:1;padding-right:14px;}
.landing-channel-name{display:block;font-size:1rem;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;letter-spacing:0;}
.landing-channel-handle{display:block;margin-top:2px;font-size:.7rem;color:rgba(242,242,255,.38);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;letter-spacing:0;}
.landing-channel-detail{display:flex;align-items:center;gap:7px;margin-top:7px;min-width:0;}
.landing-channel-badge{display:inline-flex;align-items:center;gap:5px;flex:0 0 auto;padding:3px 7px;border-radius:999px;background:rgba(255,255,255,.07);color:rgba(242,242,255,.64);font-size:.6rem;font-weight:800;text-transform:uppercase;letter-spacing:0;}
.landing-channel-badge.live{background:rgba(255,59,48,.14);color:#ff766d;}
.landing-channel-dot{width:6px;height:6px;border-radius:50%;background:#ff3b30;animation:landing-live-pulse 1.4s infinite;}
.landing-channel-context{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(242,242,255,.52);font-size:.65rem;letter-spacing:0;}
.landing-channel-arrow{position:absolute;right:13px;top:12px;color:rgba(242,242,255,.28);font-size:.9rem;transition:color .18s,transform .18s;}
.landing-channel-card:hover .landing-channel-arrow{color:#fff;transform:translate(1px,-1px);}
.landing-channel-skeleton{pointer-events:none;}
.landing-channel-skeleton:after{content:"";position:absolute;inset:0;transform:translateX(-100%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.045),transparent);animation:landing-channel-load 1.4s infinite;}
.landing-channel-skeleton .landing-channel-avatar{background:rgba(255,255,255,.06);box-shadow:none;}
.landing-channel-skeleton .landing-channel-meta{height:38px;border-radius:5px;background:rgba(255,255,255,.04);}
.landing-channels-cta-wrap{text-align:center;margin-top:26px;}
.landing-channels-cta{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 19px;border:1px solid rgba(255,255,255,.15);border-radius:7px;background:rgba(255,255,255,.04);color:#f2f2ff;text-decoration:none;font-size:.76rem;font-weight:800;letter-spacing:0;transition:background .18s,border-color .18s,transform .18s;}
.landing-channels-cta:hover{background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.3);transform:translateY(-1px);}
@keyframes landing-live-pulse{0%,100%{opacity:1}50%{opacity:.35}}
@keyframes landing-channel-load{100%{transform:translateX(100%)}}
@media(max-width:820px){.landing-channel-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:560px){.landing-channels{padding:3rem 1rem 3.75rem}.landing-channels-title{gap:9px}.landing-channels-bobo{width:46px;height:46px}.landing-channel-grid{grid-template-columns:1fr;min-height:580px}.landing-channel-card{min-height:82px}.landing-channel-avatar{width:50px;height:50px;flex-basis:50px}}

#gb-footer nav a{color:rgba(255,255,255,0.28);text-decoration:none}#gb-footer nav a:hover{color:rgba(255,255,255,0.7)}
