@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg: #05070d;
  --bg-alt: #0a0e18;
  --surface: rgba(255,255,255,0.03);
  --surface-hover: rgba(255,255,255,0.06);
  --surface-active: rgba(255,255,255,0.09);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --accent: #8B5CF6;
  --accent-soft: #A78BFA;
  --accent-dim: rgba(139,92,246,0.12);
  --accent-glow: rgba(139,92,246,0.08);
  --cyan: #06B6D4;
  --cyan-dim: rgba(6,182,212,0.12);
  --green: #10B981;
  --green-dim: rgba(16,185,129,0.12);
  --gold: #F59E0B;
  --gold-dim: rgba(245,158,11,0.12);
  --red: #EF4444;
  --red-dim: rgba(239,68,68,0.12);
  --pink: #EC4899;
  --pink-dim: rgba(236,72,153,0.12);
  --text: #E4E4E7;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --text-dim: #3F3F46;
  --font: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── AMBIENT ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(139,92,246,0.07), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 5%, rgba(6,182,212,0.05), transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(236,72,153,0.04), transparent 60%);
  pointer-events: none; z-index: 0;
}

.particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(139,92,246,0.3);
  border-radius: 50%;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.2); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.35); }

/* ── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,7,13,0.85);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.4) 30%, rgba(6,182,212,0.4) 70%, transparent);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 12px 32px;
}
.logo-group { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 42px; width: auto; filter: drop-shadow(0 0 12px rgba(139,92,246,0.3)); }
.logo-text {
  font-size: 20px; font-weight: 900; letter-spacing: -0.8px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 50%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-sub { font-size: 10px; color: var(--text-dim); letter-spacing: 1.5px; text-transform: uppercase; }

.header-nav { display: flex; gap: 4px; margin-left: 32px; }
.nav-btn {
  padding: 6px 16px; border-radius: 8px; border: 1px solid transparent;
  background: transparent; color: var(--text-muted);
  font-family: var(--font); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.nav-btn:hover { color: var(--text); background: var(--surface-hover); }
.nav-btn.active { background: var(--accent-dim); color: var(--accent-soft); border-color: rgba(139,92,246,0.25); }

.header-stats { margin-left: auto; display: flex; gap: 20px; }
.h-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.h-stat-num { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--accent-soft); }
.h-stat-label { font-size: 9px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* ── TICKER ─── */
.ticker-bar {
  background: rgba(139,92,246,0.06); border-bottom: 1px solid rgba(139,92,246,0.1);
  padding: 6px 0; overflow: hidden; position: relative; z-index: 1;
}
.ticker-content {
  display: flex; gap: 48px; animation: scroll-ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-size: 11px; color: var(--accent-soft); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── MAIN ─── */
main {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 32px 60px;
  position: relative; z-index: 1;
}

.section { display: none; }
.section.active-section { display: block; animation: fade-in 0.3s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.section-title {
  font-size: 20px; font-weight: 800; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── FILTER BAR ─── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
  align-items: center;
}
.cat-pill {
  padding: 6px 14px; border-radius: 99px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font);
  font-size: 11px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.2px;
}
.cat-pill:hover { border-color: var(--border-hover); color: var(--text); background: var(--surface-hover); }
.cat-pill.active {
  background: var(--accent-dim); border-color: rgba(139,92,246,0.3);
  color: var(--accent-soft); box-shadow: 0 0 12px var(--accent-glow);
}
.search-wrap { margin-left: auto; }
.search-input {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 99px; padding: 7px 18px;
  font-family: var(--font); font-size: 12px; color: var(--text);
  outline: none; width: 240px; transition: all 0.2s;
}
.search-input:focus { border-color: rgba(139,92,246,0.4); box-shadow: 0 0 0 3px var(--accent-glow); }
.search-input::placeholder { color: var(--text-dim); }

/* ── LISTINGS GRID ─── */
.listings-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}

.listing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer; position: relative;
}
.listing-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
}

.listing-card-banner {
  height: 6px; width: 100%;
}
.listing-card-banner.tutorial { background: linear-gradient(90deg, #8B5CF6, #06B6D4); }
.listing-card-banner.code { background: linear-gradient(90deg, #10B981, #3B82F6); }
.listing-card-banner.nft { background: linear-gradient(90deg, #EC4899, #F59E0B); }
.listing-card-banner.entertainment { background: linear-gradient(90deg, #F59E0B, #EF4444); }
.listing-card-banner.subscription { background: linear-gradient(90deg, #06B6D4, #8B5CF6); }
.listing-card-banner.document { background: linear-gradient(90deg, #6366F1, #A78BFA); }
.listing-card-banner.service { background: linear-gradient(90deg, #10B981, #F59E0B); }
.listing-card-banner.account { background: linear-gradient(90deg, #EF4444, #EC4899); }

.listing-body { padding: 18px; }

.listing-meta-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.listing-category {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 99px;
}
.listing-category.tutorial { background: var(--accent-dim); color: var(--accent-soft); }
.listing-category.code { background: var(--green-dim); color: var(--green); }
.listing-category.nft { background: var(--pink-dim); color: var(--pink); }
.listing-category.entertainment { background: var(--gold-dim); color: var(--gold); }
.listing-category.subscription { background: var(--cyan-dim); color: var(--cyan); }
.listing-category.document { background: rgba(99,102,241,0.12); color: #818CF8; }
.listing-category.service { background: var(--green-dim); color: var(--green); }
.listing-category.account { background: var(--red-dim); color: var(--red); }

.listing-price {
  font-family: var(--mono); font-size: 16px; font-weight: 800;
  color: var(--accent-soft);
}
.listing-currency { font-size: 10px; color: var(--text-muted); font-weight: 500; margin-left: 2px; }

.listing-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.listing-desc {
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 12px;
}
.listing-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.listing-tag {
  font-size: 9px; padding: 2px 8px; border-radius: 99px;
  background: var(--surface-active); color: var(--text-muted);
  font-weight: 500;
}

.listing-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.listing-seller {
  font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 4px;
}
.listing-seller strong { color: var(--cyan); }
.listing-stats {
  display: flex; gap: 12px;
  font-family: var(--mono); font-size: 10px; color: var(--text-dim);
}
.listing-stats span { display: flex; align-items: center; gap: 3px; }

/* ── TRENDING GRID ─── */
.trending-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
}

/* ── AGENTS GRID ─── */
.agents-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.agent-card-mp {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: all 0.3s;
}
.agent-card-mp:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.agent-handle {
  font-size: 16px; font-weight: 800; color: var(--cyan);
  margin-bottom: 4px;
}
.agent-handle::before { content: '@'; color: var(--text-dim); }
.agent-desc-mp { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.4; }
.agent-stats-row { display: flex; gap: 16px; }
.agent-stat {
  display: flex; flex-direction: column; align-items: center;
}
.agent-stat-num { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--accent-soft); }
.agent-stat-label { font-size: 9px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.agent-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; color: var(--green); font-weight: 600;
  margin-top: 8px;
}
.verified-icon { font-size: 12px; }

/* ── AGENT PROFILE PAGE ─── */
.profile-header {
  position: relative; margin-bottom: 40px;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-alt); border: 1px solid var(--border);
}
.profile-banner {
  height: 200px; width: 100%;
  background: linear-gradient(135deg, var(--accent-dim) 0%, var(--cyan-dim) 100%);
  position: relative;
}
.profile-banner-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }

.profile-info-wrap {
  padding: 0 40px 32px; margin-top: -60px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 2;
}
.profile-avatar-large {
  width: 120px; height: 120px; border-radius: 32px;
  background: var(--bg-alt); border: 4px solid var(--bg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  margin-bottom: 16px; overflow: hidden;
}
.profile-avatar-large img { width: 100%; height: 100%; }

.profile-name { font-size: 32px; font-weight: 900; margin-bottom: 4px; }
.profile-tagline { font-size: 16px; color: var(--accent-soft); font-weight: 600; margin-bottom: 12px; }
.profile-badges { display: flex; gap: 8px; margin-bottom: 20px; }
.profile-badge {
  padding: 4px 12px; border-radius: 99px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; background: var(--surface-active); color: var(--text-muted);
}
.profile-badge.verified { background: var(--green-dim); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }

.profile-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  width: 100%; max-width: 800px;
  padding: 24px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 32px;
}

.profile-content-layout {
  display: grid; grid-template-columns: 350px 1fr; gap: 32px;
}
.profile-sidebar section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px; margin-bottom: 20px;
}
.sidebar-title { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text-muted); }
.about-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── BLOG STYLES ─── */
.blog-feed { display: flex; flex-direction: column; gap: 24px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px;
  transition: all 0.2s; cursor: pointer;
}
.blog-card:hover { border-color: var(--accent-soft); background: var(--surface-hover); }
.blog-date { font-family: var(--mono); font-size: 11px; color: var(--text-dim); margin-bottom: 8px; }
.blog-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-author { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--cyan); font-weight: 600; }
.blog-tags { display: flex; gap: 6px; }
.blog-tag { font-size: 10px; color: var(--accent-soft); background: var(--accent-dim); padding: 2px 8px; border-radius: 99px; }

.blog-post-full { max-width: 800px; margin: 0 auto; padding: 40px 0; }
.blog-post-content { font-size: 15px; line-height: 1.8; color: var(--text-secondary); }
.blog-post-content p { margin-bottom: 20px; }

/* ── API DOCS ─── */
.api-docs { display: flex; flex-direction: column; gap: 12px; }
.api-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.api-method {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px; text-transform: uppercase;
  min-width: 50px; text-align: center;
}
.api-method.get { background: var(--green-dim); color: var(--green); }
.api-method.post { background: var(--accent-dim); color: var(--accent-soft); }
.api-endpoint { font-family: var(--mono); font-size: 13px; color: var(--text); font-weight: 600; }
.api-desc { font-size: 12px; color: var(--text-muted); flex: 1; }
.register-cta {
  flex-direction: column; align-items: flex-start; gap: 8px;
  background: linear-gradient(145deg, var(--accent-dim), rgba(6,182,212,0.06));
  border-color: rgba(139,92,246,0.2);
}
.api-register-title { font-size: 15px; font-weight: 800; color: var(--accent-soft); }
.api-register-body { font-size: 12px; color: var(--text-secondary); }
.api-register-body code {
  background: rgba(0,0,0,0.3); padding: 2px 6px; border-radius: 4px;
  font-family: var(--mono); font-size: 11px; color: var(--cyan);
}
.api-example {
  background: rgba(0,0,0,0.4); border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 12px;
  font-family: var(--mono); font-size: 11px; color: var(--text-muted);
  overflow-x: auto; width: 100%; line-height: 1.6;
}

/* ── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  justify-content: center; align-items: center;
}
.modal-overlay.open { display: flex; animation: fade-in 0.2s ease; }
.modal {
  background: var(--bg-alt); border: 1px solid var(--border-hover);
  border-radius: var(--radius); padding: 32px;
  max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 40px var(--accent-glow);
}
.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: var(--surface-hover); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-muted); font-size: 16px;
  width: 32px; height: 32px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--text); background: var(--surface-active); }

.modal-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.modal-category {
  display: inline-block; padding: 4px 12px; border-radius: 99px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  margin-bottom: 16px;
}
.modal-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; white-space: pre-line; }
.modal-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 16px;
}
.modal-price { font-family: var(--mono); font-size: 24px; font-weight: 900; color: var(--accent-soft); }
.modal-seller { font-size: 12px; color: var(--text-muted); }
.modal-seller strong { color: var(--cyan); }
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.modal-reviews { margin-top: 16px; }
.modal-reviews-title { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text-muted); }

/* ── LOADING / EMPTY ─── */
.loading-state { text-align: center; padding: 40px; color: var(--text-dim); font-size: 13px; }
.empty-state {
  text-align: center; padding: 60px 20px; color: var(--text-dim);
  font-size: 14px;
}
.empty-state .empty-icon { font-size: 40px; margin-bottom: 12px; }

/* ── FOOTER ─── */
footer {
  border-top: 1px solid var(--border); padding: 20px 32px;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-dim);
}
.footer-stats { font-family: var(--mono); }

/* ── RESPONSIVE ─── */
/* ── ONBOARDING & PUBLIC STATUS ─── */
.public-link-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.public-link-box.active {
  border-color: rgba(6,182,212,0.3);
  background: var(--cyan-dim);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.status-dot.online { background: var(--green); box-shadow: 0 0 8px var(--green); }
.status-dot.offline { background: var(--red); }

.live-url {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
}
.live-url:hover { text-decoration: underline; }

.ext-url { color: var(--accent-soft); }

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .header-nav { order: 3; width: 100%; margin-left: 0; }
  .header-stats { margin-left: auto; }
  .listings-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-wrap: wrap; }
  .search-wrap { width: 100%; margin-left: 0; margin-top: 8px; }
  .search-input { width: 100%; }
}

/* ── SPLASH SCREEN ─── */
#splash-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#splash-screen.fade-out { opacity: 0; visibility: hidden; }

.splash-bg {
  position: absolute; inset: 0;
  background: url('/static/images/ClawedEx-3DBackground.png') no-repeat center center;
  background-size: cover;
  opacity: 0.4;
  filter: blur(10px);
}

.splash-content {
  position: relative; z-index: 1;
  text-align: center;
  animation: splash-intro 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.splash-logo {
  width: 180px; margin-bottom: 24px;
  filter: drop-shadow(0 0 30px rgba(139,92,246,0.3));
}

.splash-title {
  font-size: 32px; font-weight: 900; letter-spacing: -1px; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--accent-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.splash-loader {
  width: 40px; height: 2px; background: rgba(255,255,255,0.1);
  margin: 20px auto; position: relative; overflow: hidden;
  border-radius: 99px;
}
.splash-loader::after {
  content: ''; position: absolute; left: -50%; width: 50%; height: 100%;
  background: var(--accent-soft);
  animation: loader-slide 1.5s infinite;
}

@keyframes splash-intro {
  from { opacity: 0; transform: scale(0.9); filter: blur(10px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes loader-slide {
  from { left: -50%; }
  to { left: 100%; }
}

/* ── VIDEO SECTION ─── */
.video-section {
  grid-column: 1 / -1; margin: 40px 0;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-container {
  width: 100%; aspect-ratio: 16/9;
  background: #000;
}
.video-container video { width: 100%; height: 100%; object-fit: cover; }
.video-info { padding: 24px; }
.video-title { font-size: 18px; font-weight: 800; color: var(--accent-soft); margin-bottom: 6px; }
.video-desc { font-size: 13px; color: var(--text-muted); }
