    
:root {
  --ink: #07070f;
  --ink-2: #0e0e1a;
  --lime: #c8ff3d;
  --violet: #8b5cf6;
  --hot: #ff4d8d;
  --cyan: #22d3ee;
  --red: #dc2626;
  --text: #f4f4f8;
  --muted: rgba(255, 255, 255, .5);
  --muted-2: rgba(255, 255, 255, .3);
  --line: rgba(255, 255, 255, .1);
  --line-2: rgba(255, 255, 255, .05);
  --card: rgba(255, 255, 255, .03);
  --card-hover: rgba(255, 255, 255, .06);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--lime); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); letter-spacing: -.02em; }
p { margin: 0; }
dl, dd, dt { margin: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ---------- Utility ---------- */
.hide-sm { display: inline; }
.hide-md { display: inline-flex; }
.hide-lg { display: inline-flex; }
@media (max-width: 640px) { .hide-sm { display: none !important; } }
@media (max-width: 860px) { .hide-md { display: none !important; } }
@media (max-width: 1024px) { .hide-lg { display: none !important; } }

.eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow--hot { color: var(--hot); }
.eyebrow--cyan { color: var(--cyan); }

.text-gradient {
  background: linear-gradient(90deg, #c8ff3d, #22d3ee, #8b5cf6, #ff4d8d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

.ico { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s, color .2s;
}
.btn--sm { padding: 9px 14px; font-size: 12px; font-weight: 600; }
.btn--lg { padding: 15px 28px; font-size: 15px; }
.btn--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 40px -10px rgba(200, 255, 61, .7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 15px 50px -10px rgba(200, 255, 61, .9); }
.btn--outline { border: 1px solid rgba(255, 255, 255, .15); color: #fff; }
.btn--outline:hover { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .06); }
.btn--ghost { border: 1px solid var(--line); background: rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .8); }
.btn--ghost:hover { border-color: rgba(200, 255, 61, .6); color: #fff; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: #ef4444; }
.btn--active { background: var(--lime) !important; color: var(--ink) !important; border-color: var(--lime) !important; }
.badge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 16px 0;
  transition: padding .3s, background .3s;
}
.header--scrolled {
  padding: 8px 0;
  background: rgba(7, 7, 15, .8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-2);
}
.header__inner { display: flex; align-items: center; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 0 30px rgba(200, 255, 61, .35);
  transition: transform .3s;
}
.logo:hover .logo__mark { transform: rotate(8deg); }
.logo__text { line-height: 1.1; }
.logo__title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.logo__sub { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255, 255, 255, .4); }
@media (max-width: 640px) { .logo__text { display: none; } }

.search { position: relative; flex: 1; max-width: 480px; margin: 0 auto; }
.search__icon { position: absolute; left: 14px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); color: rgba(255, 255, 255, .4); pointer-events: none; }
.search__input {
  width: 100%;
  padding: 11px 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: .2s;
}
.search__input::placeholder { color: rgba(255, 255, 255, .3); }
.search__input:focus { border-color: rgba(200, 255, 61, .6); background: rgba(255, 255, 255, .1); box-shadow: 0 0 0 4px rgba(200, 255, 61, .12); }
.search__input::-webkit-search-cancel-button { display: none; }
.search__clear { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); padding: 4px; color: rgba(255, 255, 255, .4); }
.search__clear svg { width: 16px; height: 16px; }
.search__clear:hover { color: #fff; }

.nav { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 150px 0 0; }
@media (max-width: 640px) { .hero { padding-top: 110px; } }
.noise::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; opacity: .06; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); animation: blob 16s ease-in-out infinite; }
.blob--1 { top: -8rem; left: -6rem; width: 32rem; height: 32rem; background: rgba(139, 92, 246, .3); }
.blob--2 { top: 5rem; right: -10%; width: 28rem; height: 28rem; background: rgba(34, 211, 238, .2); animation-delay: -6s; }
.blob--3 { bottom: -10rem; left: 33%; width: 26rem; height: 26rem; background: rgba(200, 255, 61, .15); animation-delay: -11s; }
.grid-bg {
  position: absolute; inset: 0; opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.stickers { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sticker {
  position: absolute;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  font-size: 24px;
  animation: float 7s ease-in-out infinite;
}
@media (max-width: 1024px) { .stickers { display: none; } }

.hero__content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px; padding: 7px 16px;
  border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .6);
}
.eq { display: flex; gap: 2px; align-items: flex-end; height: 12px; }
.eq i { display: block; width: 2px; height: 12px; border-radius: 2px; background: var(--lime); transform-origin: bottom; animation: ticker .9s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: .15s; }
.eq i:nth-child(3) { animation-delay: .3s; }
.eq i:nth-child(4) { animation-delay: .45s; }

.hero__title { font-size: clamp(34px, 6.5vw, 76px); font-weight: 800; line-height: 1.05; }
.hero__lead { max-width: 640px; margin: 24px auto 0; font-size: 17px; color: rgba(255, 255, 255, .6); }
@media (max-width: 640px) { .hero__lead { font-size: 15px; } }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 640px; margin: 56px auto 0;
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
}
.stats > div { padding: 20px 12px; border-left: 1px solid var(--line); }
.stats > div:first-child { border-left: 0; }
.stats dt { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 3vw, 30px); }
.stats dd { margin-top: 4px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .4); }

.marquee { position: relative; z-index: 2; margin-top: 64px; padding: 12px 0; overflow: hidden; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: rgba(255, 255, 255, .02); }
.marquee__track { display: flex; gap: 12px; width: max-content; animation: marquee 50s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13px; color: rgba(255, 255, 255, .7); white-space: nowrap;
  transition: .2s;
}
.chip:hover { border-color: var(--lime); color: var(--lime); }
.chip small { color: rgba(255, 255, 255, .4); font-size: 12px; }
.chip--active { border-color: var(--lime); background: rgba(200, 255, 61, .12); color: var(--lime); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.section__title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; }
.section__note { max-width: 360px; font-size: 14px; color: var(--muted); }

/* ---------- Video card ---------- */
.strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #2a2a3a transparent; }
.strip::-webkit-scrollbar { height: 6px; }
.strip::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 99px; }
.strip > .vcard { width: 288px; flex-shrink: 0; scroll-snap-align: start; }

.vgrid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.vcard {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--line); background: var(--card);
  transition: .2s;
}
.vcard:hover { border-color: rgba(255, 255, 255, .25); background: var(--card-hover); }
.vcard__thumb { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: rgba(0, 0, 0, .4); }
.vcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.vcard:hover .vcard__thumb img { transform: scale(1.05); }
.vcard__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%);
  opacity: .85; transition: .2s;
}
.vcard:hover .vcard__play { opacity: 1; }
.vcard__play span {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime); color: var(--ink); transform: scale(.9); transition: .2s;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.vcard:hover .vcard__play span { transform: scale(1); }
.vcard__play svg { width: 20px; height: 20px; margin-left: 2px; }
.vcard__body { display: flex; flex: 1; flex-direction: column; justify-content: space-between; gap: 8px; padding: 12px; }
.vcard__title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  text-align: left; font-size: 14px; font-weight: 600; line-height: 1.35; color: rgba(255,255,255,.9);
}
.vcard__title:hover { color: var(--lime); }
.vcard__channel { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vcard__foot { display: flex; align-items: center; justify-content: space-between; }
.vcard__yt { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); transition: .2s; }
.vcard__yt:hover { color: #f87171; }
.vcard__yt svg { width: 14px; height: 14px; }
.save { padding: 6px; border-radius: 50%; color: rgba(255,255,255,.3); transition: .2s; }
.save:hover { color: #fff; }
.save svg { width: 16px; height: 16px; }
.save--on { color: var(--lime); }
.save--on svg { fill: currentColor; }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.ccard {
  position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  min-height: 190px; padding: 20px; overflow: hidden; text-align: left;
  border-radius: 24px; border: 1px solid var(--line); background: var(--card);
  transition: .3s;
}
.ccard:hover { transform: translateY(-4px); background: var(--card-hover); border-color: rgba(255,255,255,.2); }
.ccard--big { grid-column: span 2; }
@media (max-width: 640px) { .ccard--big { grid-column: span 2; } }
.ccard__cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: blur(4px); transition: .5s; pointer-events: none; }
.ccard:hover .ccard__cover { opacity: .2; transform: scale(1.1); }
.ccard__glow { position: absolute; top: -32px; right: -32px; width: 112px; height: 112px; border-radius: 50%; opacity: .3; filter: blur(30px); transition: .3s; }
.ccard:hover .ccard__glow { opacity: .7; }
.ccard__top, .ccard__bottom { position: relative; }
.ccard__top { display: flex; align-items: flex-start; justify-content: space-between; }
.ccard__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; font-size: 24px; box-shadow: 0 10px 25px rgba(0,0,0,.3); }
.ccard__count { padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); background: rgba(7,7,15,.6); font-size: 11px; font-weight: 600; color: rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.ccard h3 { font-size: 18px; font-weight: 700; }
.ccard--big h3 { font-size: 24px; }
.ccard p { margin-top: 4px; font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccard__arrow {
  position: absolute; right: 0; bottom: 0; display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: 50%; background: #fff; color: var(--ink); opacity: 0; transform: translateY(8px); transition: .3s;
}
.ccard__arrow svg { width: 16px; height: 16px; }
.ccard:hover .ccard__arrow { opacity: 1; transform: translateY(0); }

/* Gradients for categories */
.g-0 { background-image: linear-gradient(135deg, #bef264, #34d399); }
.g-1 { background-image: linear-gradient(135deg, #67e8f9, #3b82f6); }
.g-2 { background-image: linear-gradient(135deg, #a78bfa, #d946ef); }
.g-3 { background-image: linear-gradient(135deg, #fcd34d, #f97316); }
.g-4 { background-image: linear-gradient(135deg, #fb7185, #ef4444); }
.g-5 { background-image: linear-gradient(135deg, #5eead4, #06b6d4); }
.g-6 { background-image: linear-gradient(135deg, #fef08a, #f59e0b); }
.g-7 { background-image: linear-gradient(135deg, #f9a8d4, #f43f5e); }
.g-8 { background-image: linear-gradient(135deg, #f0abfc, #a855f7); }
.g-9 { background-image: linear-gradient(135deg, #6ee7b7, #16a34a); }
.g-10 { background-image: linear-gradient(135deg, #7dd3fc, #6366f1); }
.g-11 { background-image: linear-gradient(135deg, #818cf8, #6d28d9); }
.g-12 { background-image: linear-gradient(135deg, #fca5a5, #e11d48); }
.g-13 { background-image: linear-gradient(135deg, #d9f99d, #14b8a6); }
.g-14 { background-image: linear-gradient(135deg, #fdba74, #f87171); }
.g-15 { background-image: linear-gradient(135deg, #93c5fd, #06b6d4); }
.g-16 { background-image: linear-gradient(135deg, #fde68a, #eab308); }
.g-17 { background-image: linear-gradient(135deg, #d8b4fe, #6366f1); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; overflow: hidden; padding: 24px; border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(to bottom, rgba(255,255,255,.05), transparent); }
.step__n { position: absolute; top: -16px; right: -8px; font-family: var(--font-display); font-size: 72px; font-weight: 800; color: rgba(255,255,255,.04); transition: .3s; }
.step:hover .step__n { color: rgba(200,255,61,.1); }
.step__e { font-size: 30px; }
.step h3 { margin-top: 16px; font-size: 18px; font-weight: 700; }
.step p { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* ---------- Languages ---------- */
.lang-grid { display: grid; gap: 12px; grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .lang-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .lang-grid { grid-template-columns: repeat(2, 1fr); } }
.lcard {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px; text-align: left;
  border-radius: 16px; border: 1px solid var(--line); background: var(--card); transition: .2s;
}
.lcard:hover { transform: translateY(-2px); border-color: rgba(34,211,238,.5); background: var(--card-hover); }
.lcard__flag { font-size: 26px; transition: .2s; }
.lcard:hover .lcard__flag { transform: scale(1.15); }
.lcard__name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); }
.lcard__meta { font-size: 11px; color: var(--muted-2); }
.lcard--active { border-color: var(--cyan); background: rgba(34,211,238,.08); }

/* ---------- Inner page hero (category / language) ---------- */
.page { padding-top: 110px; }
@media (max-width: 640px) { .page { padding-top: 90px; } }
.phero { position: relative; overflow: hidden; }
.phero__bg { position: absolute; inset: 0; opacity: .2; }
.phero__fade { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(7,7,15,.4), var(--ink)); }
.phero__inner { position: relative; padding: 40px 0 48px; }
.back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 14px; color: var(--muted); transition: .2s; }
.back:hover { color: #fff; }
.back svg { width: 16px; height: 16px; }
.phero__row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.phero__id { display: flex; align-items: center; gap: 20px; }
.phero__icon { display: grid; place-items: center; width: 80px; height: 80px; border-radius: 24px; font-size: 40px; box-shadow: 0 20px 40px rgba(0,0,0,.4); }
@media (max-width: 640px) { .phero__icon { width: 60px; height: 60px; font-size: 30px; border-radius: 18px; } }
.phero__label { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.phero__title { font-size: clamp(28px, 5vw, 52px); font-weight: 800; }
.phero__meta { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.6); }

.toolbar { position: sticky; top: 56px; z-index: 30; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: rgba(7,7,15,.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.toolbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 12px 0; }
.seg { display: flex; padding: 4px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.05); font-size: 12px; font-weight: 600; }
.seg button { padding: 6px 14px; border-radius: 999px; color: var(--muted); transition: .2s; white-space: nowrap; }
.seg button:hover { color: #fff; }
.seg button.is-active { background: var(--lime); color: var(--ink); }
.toolbar__filter { flex: 1; min-width: 180px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.05); color: #fff; font-size: 14px; outline: none; }
.toolbar__filter::placeholder { color: rgba(255,255,255,.3); }
.toolbar__filter:focus { border-color: rgba(200,255,61,.6); }
.toolbar__chips { display: flex; gap: 8px; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.toolbar__chips::-webkit-scrollbar { display: none; }
.toolbar__chips .chip { padding: 6px 12px; font-size: 12px; }

.list { display: flex; flex-direction: column; gap: 24px; padding: 40px 0; }
.empty { padding: 64px 24px; text-align: center; color: var(--muted-2); border: 1px dashed var(--line); border-radius: 24px; }
.empty__e { font-size: 48px; }
.empty h3 { margin-top: 16px; font-size: 16px; color: #fff; }
.empty p { margin-top: 4px; font-size: 14px; }

/* ---------- Channel card ---------- */
.chan { padding: 24px; border-radius: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.02); animation: fadeUp .5s ease both; }
@media (max-width: 640px) { .chan { padding: 16px; border-radius: 18px; } }
.chan__head { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 20px; }
.chan__avatar { display: grid; place-items: center; width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); }
.chan__id { flex: 1; min-width: 180px; }
.chan__rank { margin-right: 8px; font-size: 11px; font-weight: 700; letter-spacing: .15em; color: var(--muted-2); }
.chan__name { display: inline; font-size: 20px; font-weight: 700; }
@media (max-width: 640px) { .chan__name { font-size: 17px; } }
.chan__level { margin-top: 2px; font-size: 12px; color: var(--muted); }
.chan__stats { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; }
.stat { padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.05); font-weight: 600; white-space: nowrap; }
.stat span { color: rgba(255,255,255,.4); }
.chan__actions { display: flex; gap: 8px; }
.chan__videos { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .chan__videos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .chan__videos { grid-template-columns: 1fr; } }

/* ---------- Search / results ---------- */
.results { padding-bottom: 64px; }
.results h1 { font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; }
.results h1 span { color: var(--muted-2); }
.results h2 { margin: 40px 0 16px; font-size: 18px; font-weight: 700; }
.results__cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip--lime { border-color: rgba(200,255,61,.4); background: rgba(200,255,61,.1); color: var(--lime); font-weight: 600; }
.chip--lime:hover { background: var(--lime); color: var(--ink); }
.crow-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .crow-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .crow-grid { grid-template-columns: 1fr; } }
.crow { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 16px; border: 1px solid var(--line); background: var(--card); }
.crow__avatar { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: rgba(255,255,255,.1); font-family: var(--font-display); font-weight: 700; }
.crow__body { flex: 1; min-width: 0; }
.crow__name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crow__meta { font-size: 12px; color: var(--muted-2); }
.crow__meta button:hover { color: var(--lime); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; padding: 12px; }
@media (min-width: 640px) { .modal { padding: 24px; } }
.modal__backdrop { position: absolute; inset: 0; background: rgba(7,7,15,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.modal__box { position: relative; width: 100%; max-width: 1040px; max-height: 100%; overflow: auto; border-radius: 24px; border: 1px solid var(--line); background: var(--ink-2); box-shadow: 0 40px 80px rgba(0,0,0,.6); animation: pop .25s ease both; }
.modal__player { aspect-ratio: 16 / 9; width: 100%; background: #000; }
.modal__player iframe { display: block; width: 100%; height: 100%; border: 0; }
.modal__info { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 20px 24px; }
@media (max-width: 640px) { .modal__info { padding: 16px; } }
.modal__meta { flex: 1; min-width: 240px; }
.modal__title { font-size: 17px; font-weight: 700; line-height: 1.35; }
.modal__channel { margin-top: 8px; font-size: 14px; color: var(--muted); }
.modal__channel a { font-weight: 600; color: rgba(255,255,255,.8); }
.modal__channel a:hover { color: var(--lime); }
.modal__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.modal__close { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.6); color: #fff; backdrop-filter: blur(6px); transition: .2s; }
.modal__close:hover { background: #fff; color: var(--ink); }
.modal__close svg { width: 16px; height: 16px; }
body.modal-open { overflow: hidden; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 60; transform: translateX(-50%); padding: 10px 18px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 13px; font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,.4); animation: fadeUp .3s ease both; }

/* ---------- Footer ---------- */
.footer { margin-top: 40px; border-top: 1px solid var(--line-2); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 24px; }
.footer__logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.footer__sub { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,.4); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--muted); }
.footer__nav a:hover { color: #fff; }
.footer__copy { font-size: 12px; color: var(--muted-2); }

/* ---------- Animations ---------- */
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(3deg); } }
@keyframes blob { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.1); } 66% { transform: translate(-30px,20px) scale(.95); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes ticker { 0%, 100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
.fade-up { animation: fadeUp .5s ease both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- YouTube Notice ---------- */
.yt-notice {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.yt-notice[hidden] { display: none !important; }

.yt-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.yt-notice__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  padding: 34px 38px 30px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(200, 255, 61, .22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(139, 92, 246, .16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(34, 211, 238, .09), transparent 34%),
    var(--ink-2);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .7),
    0 0 0 1px rgba(255, 255, 255, .03) inset;
  animation: ytNoticeIn .28s ease both;
}

.yt-notice__box::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(200, 255, 61, .10);
  filter: blur(45px);
  pointer-events: none;
}

.yt-notice__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--red);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 35px rgba(220, 38, 38, .28);
}

.yt-notice__eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.yt-notice__title {
  position: relative;
  margin: 0 auto 16px;
  max-width: 410px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.yt-notice__text {
  position: relative;
  max-width: 430px;
  margin: 0 auto 16px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}

.yt-notice__vpn {
  position: relative;
  max-width: 430px;
  margin: 0 auto 24px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 255, 61, .16);
  border-radius: 14px;
  background: rgba(200, 255, 61, .05);
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.yt-notice__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(200, 255, 61, .18);
  transition: transform .2s, box-shadow .2s;
}

.yt-notice__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 255, 61, .30);
}

.yt-notice__later {
  position: relative;
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 10px;
  border: 0;
  background: none;
  color: var(--muted-2);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  transition: color .2s;
}

.yt-notice__later:hover { color: var(--text); }

.yt-notice__close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
}

.yt-notice__close:hover {
  border-color: rgba(200, 255, 61, .4);
  background: rgba(200, 255, 61, .08);
  color: var(--lime);
}

.yt-notice__close svg {
  width: 100%;
  height: 100%;
}

@keyframes ytNoticeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 700px) {
  .yt-notice { padding: 14px; }

  .yt-notice__box {
    max-width: 100%;
    padding: 30px 20px 24px;
    border-radius: 20px;
  }

  .yt-notice__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 17px;
    border-radius: 16px;
    font-size: 22px;
  }

  .yt-notice__title {
    max-width: 340px;
    font-size: 20px;
  }

  .yt-notice__text {
    font-size: 13px;
    line-height: 1.55;
  }

  .yt-notice__vpn {
    font-size: 12px;
  }
}


    
