/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/globals.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* ============================================================
   Viboo web — design tokens + components rebuilt from the
   template (Direction A: Dense Grid Premium), made responsive.
   Token values are taken verbatim from the template's base.css.
   ============================================================ */

:root {
  --accent: #6366f1;
  --accent-bright: #818cf8;
  --accent-deep: #4f46e5;
  --accent-rgb: 99, 102, 241;

  --bg: #020617;
  --bg-2: #0b1120;
  --surface: #0f172a;
  --surface-2: #1e293b;
  --line: rgba(148, 163, 184, 0.12);
  --line-strong: rgba(148, 163, 184, 0.22);

  --txt: #f8fafc;
  --txt-2: #d6dde7;
  --txt-3: #aab4c4;
  --txt-4: #8794a8;

  /* --font-display / --font-body / --font-mono are injected by next/font */

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;

  --glow: 0 0 0 1px rgba(var(--accent-rgb), 0.5), 0 10px 40px -8px rgba(var(--accent-rgb), 0.55);
  --shadow-card: 0 12px 30px -10px rgba(0, 0, 0, 0.7);

  --gap: 14px;
  --pad: clamp(16px, 4vw, 48px);
  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

html, body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body), system-ui, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* shared grain overlay */
.grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shell ---------- */
.shell { min-height: 100vh; background: var(--bg); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- top bar (full-width, sticky, translucent) ---------- */
/* The blur lives on a masked ::before layer so it fades out smoothly at the
   bottom (no hard cut-off line) and reads evenly across the bar. */
.site-bar {
  position: -webkit-sticky;
  position: sticky; top: 0; z-index: 50; isolation: isolate;
}
.site-bar::before {
  content: ''; position: absolute; inset: -1px 0 -24px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.55) 60%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  -webkit-mask-image: linear-gradient(180deg, #000 0, #000 58%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, #000 58%, transparent 100%);
}
.site-bar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  font-family: var(--font-display), sans-serif; font-weight: 700; font-size: 20px;
  letter-spacing: -0.03em; color: var(--txt); display: flex; align-items: center; gap: 9px;
}
.logo .mark {
  width: 24px; height: 24px; border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.6);
  display: grid; place-items: center; color: #fff; font-size: 13px;
}
.nav-links { display: none; gap: 22px; margin-left: 8px; }
.nav-links a {
  font-family: var(--font-body), sans-serif; font-size: 13.5px; font-weight: 600; color: var(--txt-3);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--txt); }
.bar-right { display: flex; align-items: center; gap: 9px; }
.iconbtn {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  color: var(--txt-2); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  cursor: pointer; transition: all 0.15s ease;
}
.iconbtn:hover { color: var(--txt); border-color: var(--line-strong); background: rgba(255, 255, 255, 0.09); }
.iconbtn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.avatar {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--txt-2);
}
.avatar svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.9; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; margin-top: -68px;
  height: clamp(420px, 62vh, 600px);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 75% 8%, rgba(var(--accent-rgb), 0.45), transparent 55%),
    linear-gradient(135deg, #1b2150 0%, #0b1024 45%, #05070f 100%);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.5) 0%, transparent 28%, rgba(2, 6, 23, 0.35) 55%, var(--bg) 99%),
    radial-gradient(120% 80% at 80% 10%, transparent, rgba(2, 6, 23, 0.5));
}
.hero__body {
  position: absolute; left: 0; right: 0; bottom: clamp(24px, 4vw, 48px); z-index: 3;
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.hero__tag {
  font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-bright);
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.hero__tag::before { content: ''; width: 26px; height: 1px; background: var(--accent-bright); }
.hero__title {
  font-family: var(--font-display), sans-serif; font-weight: 500;
  font-size: clamp(34px, 5.5vw, 60px); line-height: 0.98; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 12px; max-width: 16ch; text-wrap: balance;
}
.hero__desc { font-size: 14px; color: var(--txt-2); line-height: 1.5; max-width: 46ch; margin-bottom: 14px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12px; color: var(--txt-3); }
.hero__meta span { display: flex; align-items: center; gap: 7px; }
.hero__meta span::before { content: ''; width: 3px; height: 3px; border-radius: 99px; background: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: var(--r-md); cursor: pointer; border: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -6px rgba(var(--accent-rgb), 0.6); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { background: rgba(255, 255, 255, 0.1); color: var(--txt); border: 1px solid var(--line-strong); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- filter pills ---------- */
.filterbar {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 16px 0 14px; border-bottom: 1px solid var(--line); margin-top: 4px;
}
.filterbar::-webkit-scrollbar { display: none; }
.filter {
  flex: 0 0 auto; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 13px;
  color: var(--txt-3); background: transparent; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 99px; cursor: pointer; white-space: nowrap; transition: all 0.15s ease;
}
.filter.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.filter:not(.active):hover { color: var(--txt); border-color: var(--line-strong); }

/* ---------- section head ---------- */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin: 30px 0 14px; }
.sec-head h2 { font-family: var(--font-display), sans-serif; font-weight: 500; font-size: clamp(17px, 2vw, 21px); letter-spacing: -0.01em; }
.sec-head a { font-family: var(--font-body), sans-serif; font-size: 12px; font-weight: 600; color: var(--accent-bright); letter-spacing: 0.04em; cursor: pointer; }

/* empty / error state */
.notice { font-family: var(--font-body), sans-serif; font-size: 14px; color: var(--txt-3); padding: 28px 0 8px; }

/* ---------- responsive video grid ---------- */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: var(--gap); gap: var(--gap); }
@media (min-width: 560px)  { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px)  { .grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1400px) { .grid { grid-template-columns: repeat(6, 1fr); } }

/* ---------- video card (rebuilt from .card/.thumb) ---------- */
.card { cursor: pointer; display: block; }
.thumb {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r-md);
  overflow: hidden; background: var(--surface); border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}
.thumb__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.thumb__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.05) 30%, rgba(2, 6, 23, 0.55) 78%, rgba(2, 6, 23, 0.85) 100%);
}
.thumb__dur {
  position: absolute; right: 7px; bottom: 7px; z-index: 4;
  font-family: var(--font-mono), monospace; font-size: 10.5px; font-weight: 600; color: #fff;
  background: rgba(0, 0, 0, 0.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 2px 6px; border-radius: 5px; letter-spacing: 0.02em;
}
.thumb__cat {
  position: absolute; left: 7px; top: 7px; z-index: 4; font-size: 10.5px; font-weight: 600; color: #fff;
  background: rgba(var(--accent-rgb), 0.85); padding: 3px 8px; border-radius: 99px;
}
.thumb__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 5; background: rgba(255, 255, 255, 0.18); }
.thumb__progress i { display: block; height: 100%; background: var(--accent); }
.thumb__play {
  position: absolute; left: 50%; top: 50%; z-index: 5; width: 46px; height: 46px; border-radius: 99px;
  background: rgba(var(--accent-rgb), 0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: grid; place-items: center;
  transform: translate(-50%, -50%) scale(0.7); opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
  box-shadow: 0 8px 24px -4px rgba(var(--accent-rgb), 0.7);
}
.thumb__play svg { width: 18px; height: 18px; fill: #fff; margin-left: 2px; }
.card:hover .thumb { transform: translateY(-3px); box-shadow: var(--glow); }
.card:hover .thumb__img { transform: scale(1.07); }
.card:hover .thumb__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.card__title {
  font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 13.5px; color: var(--txt);
  margin-top: 9px; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card__meta { display: flex; align-items: center; gap: 10px; margin-top: 4px; font-family: var(--font-body), sans-serif; font-size: 11px; font-weight: 600; color: var(--txt-3); }
.card__meta .m { display: inline-flex; align-items: center; gap: 4px; }
.card__meta svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.1; }

/* ---------- continue-watching rail ---------- */
.rail { display: flex; gap: var(--gap); overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.rail::-webkit-scrollbar { display: none; }
.rail .card { flex: 0 0 clamp(200px, 40vw, 260px); }
.rail .thumb { aspect-ratio: 16 / 10; }

@media (min-width: 720px) { .nav-links { display: flex; } }
@media (prefers-reduced-motion: reduce) { .thumb__img, .thumb { transition: none; } }

/* ---------- footer ---------- */
.footer { margin-top: 44px; padding: 30px 0 26px; border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.05)); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.footer__desc { font-family: var(--font-body), sans-serif; font-size: 12.5px; line-height: 1.55; color: var(--txt-3); max-width: 360px; margin: 12px 0 18px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 10px 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.footer__legal a, .footer__legal span { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11px; color: var(--txt-4); }
.footer__legal a:hover { color: var(--txt-2); }

/* ---------- watch page ---------- */
.watch { padding-top: 24px; padding-bottom: 8px; max-width: 1080px; }
.player-wrap { margin-bottom: 18px; }
.player-fallback {
  aspect-ratio: 16 / 9; display: grid; place-items: center; border-radius: 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  font-family: var(--font-body), sans-serif; font-size: 14px; color: var(--txt-3);
}
.watch__title {
  font-family: var(--font-display), sans-serif; font-weight: 500;
  font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.02em; line-height: 1.1; color: var(--txt);
}
.watch__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin: 12px 0 16px;
  font-family: var(--font-body), sans-serif; font-size: 12.5px; font-weight: 600; color: var(--txt-3);
}
.watch__cat { color: var(--accent-bright); }
.watch__cat:hover { color: var(--txt); }
.watch__desc {
  font-family: var(--font-body), sans-serif; font-size: 14px; line-height: 1.65; color: var(--txt-2);
  max-width: 70ch; margin-bottom: 16px;
}
.watch__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.tagpill {
  font-family: var(--font-mono), monospace; font-size: 11px; color: var(--txt-3);
  padding: 4px 9px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--bg-2);
}

/* comments (read-only until 5b-3) */
.comments { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 20px; }
.comments__head {
  font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 17px; margin-bottom: 14px;
}
.cmt-list, .cmt__replies { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cmt__replies { margin: 12px 0 0 18px; padding-left: 14px; border-left: 1px solid var(--line); }
.cmt__head { display: flex; align-items: center; gap: 10px; }
.cmt__author { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 13px; color: var(--txt); }
.cmt__time { font-family: var(--font-body), sans-serif; font-size: 11px; color: var(--txt-4); }
.cmt__body { font-family: var(--font-body), sans-serif; font-size: 13.5px; line-height: 1.55; color: var(--txt-2); margin-top: 3px; }

/* ---------- HLS player ---------- */
.player {
  position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line-strong);
}
.player__video, .player__ad-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000;
}
/* Both videos stay in the layout (never display:none, so the active one keeps
   decoding/advancing). Visibility is controlled by z-index + opacity. */
.player__video { z-index: 1; }
.player__ad-video { z-index: 0; opacity: 0; }
.player--ad .player__ad-video { z-index: 3; opacity: 1; }
.player__ad-ui {
  position: absolute; z-index: 3; inset: 0; pointer-events: none;
}
.ad-badge {
  position: absolute; top: 12px; left: 12px; pointer-events: auto;
  font-family: var(--font-body), sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; background: #f59e0b; padding: 4px 8px; border-radius: 5px;
}
.ad-count {
  position: absolute; top: 13px; left: 58px; pointer-events: auto;
  font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11px; color: rgba(255,255,255,0.85);
}
.ad-skip {
  position: absolute; bottom: 16px; right: 16px; pointer-events: auto;
  font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 12.5px; color: #fff;
  background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.3); padding: 8px 14px; border-radius: 7px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px); cursor: pointer;
}
.ad-skip:disabled { opacity: 0.6; cursor: default; }
.player__error {
  position: absolute; inset: 0; z-index: 4; display: grid; place-items: center; text-align: center;
  background: rgba(2,6,23,0.8); font-family: var(--font-body), sans-serif; font-size: 13px; color: var(--txt-2); padding: 20px;
}

/* ---------- generic content pages (browse/categories/courses/course/search) ---------- */
.page { padding-top: 26px; padding-bottom: 10px; }
.page-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.page-title {
  font-family: var(--font-display), sans-serif; font-weight: 500;
  font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.02em; color: var(--txt);
}
.page-sub { font-family: var(--font-body), sans-serif; font-size: 13px; color: var(--txt-3); }
.link-more, .link-back {
  display: inline-block; margin-top: 20px; font-family: var(--font-body), sans-serif;
  font-size: 13px; font-weight: 600; color: var(--accent-bright);
}
.link-back { margin: 0 0 14px; }
.link-more:hover, .link-back:hover { color: var(--txt); }

/* pagination */
.pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.pager__btn {
  font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 13px; color: var(--txt);
  padding: 9px 16px; border-radius: 8px; border: 1px solid var(--line-strong); background: var(--bg-2);
}
.pager__btn:hover { border-color: var(--accent); }
.pager__btn.is-disabled { opacity: 0.4; pointer-events: none; }
.pager__info { font-family: var(--font-body), sans-serif; font-size: 12.5px; color: var(--txt-3); }

/* category tree */
.cat-tree, .cat-children { list-style: none; }
.cat-tree { display: flex; flex-direction: column; gap: 10px; }
.cat-link {
  display: inline-flex; align-items: center; font-family: var(--font-display), sans-serif; font-weight: 500;
  font-size: 16px; color: var(--txt); padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg-2); min-width: 220px;
}
.cat-link:hover { border-color: var(--accent); color: var(--accent-bright); }
.cat-children { margin: 8px 0 0 18px; padding-left: 14px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.cat-children .cat-link { font-size: 14px; padding: 9px 14px; min-width: 180px; }

/* courses */
.course-grid { display: grid; grid-template-columns: 1fr; grid-gap: var(--gap); gap: var(--gap); }
@media (min-width: 620px)  { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .course-grid { grid-template-columns: repeat(3, 1fr); } }
.course-card {
  display: block; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-2); transition: transform 0.18s ease, border-color 0.18s ease;
}
.course-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.course-card__art { aspect-ratio: 16 / 9; background-size: cover; background-position: center; }
.course-card__title {
  font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 15px; color: var(--txt);
  padding: 12px 14px 4px;
}
.course-card__desc {
  font-family: var(--font-body), sans-serif; font-size: 12.5px; line-height: 1.5; color: var(--txt-3);
  padding: 0 14px 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* course detail items */
.course-item { position: relative; }
.course-item__num {
  position: absolute; z-index: 2; top: 8px; left: 8px;
  font-family: var(--font-mono), monospace; font-size: 10px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 3px 7px; border-radius: 5px;
}

/* ---------- account menu ---------- */
.account { position: relative; }
.avatar { cursor: pointer; border: none; padding: 0; }
.avatar__initial {
  display: grid; place-items: center; width: 100%; height: 100%;
  font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 13px; color: #fff;
}
.menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 50; min-width: 200px;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5); padding: 6px; overflow: hidden;
}
.menu__head { padding: 8px 10px 10px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.menu__name { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 13px; color: var(--txt); }
.menu__email { font-family: var(--font-body), sans-serif; font-size: 11px; color: var(--txt-4); margin-top: 2px; word-break: break-all; }
.menu__item {
  display: block; width: 100%; text-align: left; cursor: pointer; background: none; border: none;
  font-family: var(--font-body), sans-serif; font-size: 13px; font-weight: 600; color: var(--txt-2);
  padding: 9px 10px; border-radius: 8px;
}
.menu__item:hover { background: rgba(255,255,255,0.06); color: var(--txt); }

/* ---------- modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px;
  background: rgba(2,6,23,0.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.modal {
  width: 100%; max-width: 400px; background: var(--bg-2); border: 1px solid var(--line-strong);
  border-radius: 16px; padding: 22px; box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}
.modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.modal__title { font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.modal__close {
  background: none; border: none; cursor: pointer; color: var(--txt-3); font-size: 22px; line-height: 1;
  width: 30px; height: 30px; border-radius: 8px;
}
.modal__close:hover { background: rgba(255,255,255,0.06); color: var(--txt); }
.modal__note { font-family: var(--font-body), sans-serif; font-size: 12.5px; color: var(--accent-bright); margin-bottom: 14px; }
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field span { font-family: var(--font-body), sans-serif; font-size: 12px; font-weight: 600; color: var(--txt-3); }
.field input {
  font-family: var(--font-body), sans-serif; font-size: 14px; color: var(--txt);
  padding: 11px 13px; border-radius: 9px; border: 1px solid var(--line-strong); background: var(--bg); outline: none;
}
.field input:focus { border-color: var(--accent); }
.modal__error {
  font-family: var(--font-body), sans-serif; font-size: 12.5px; color: #fca5a5;
  background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.25); padding: 9px 11px; border-radius: 9px;
}
.modal__submit { justify-content: center; margin-top: 4px; }
.modal__submit:disabled { opacity: 0.6; cursor: default; }
.modal__switch { font-family: var(--font-body), sans-serif; font-size: 12.5px; color: var(--txt-3); margin-top: 14px; text-align: center; }
.modal__switch button { background: none; border: none; cursor: pointer; color: var(--accent-bright); font-weight: 600; font-size: 12.5px; }

/* ---------- watch actions (like/save) ---------- */
.watch__actions { display: flex; gap: 10px; margin: 4px 0 18px; }
.act-btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 13px; color: var(--txt-2);
  padding: 9px 14px; border-radius: 10px; border: 1px solid var(--line-strong); background: var(--bg-2);
}
.act-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.act-btn:hover { border-color: var(--accent); color: var(--txt); }
.act-btn.is-on { color: var(--accent-bright); border-color: var(--accent); }
.act-btn.is-on svg { fill: currentColor; }
.act-btn:disabled { opacity: 0.6; cursor: default; }
.act-btn__count { font-family: var(--font-mono), monospace; font-size: 12px; color: var(--txt-3); }

/* ---------- comment composer ---------- */
.composer { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.composer--compact { margin: 10px 0 4px; }
.composer__input {
  width: 100%; resize: vertical; font-family: var(--font-body), sans-serif; font-size: 13.5px; color: var(--txt);
  padding: 11px 13px; border-radius: 10px; border: 1px solid var(--line-strong); background: var(--bg-2); outline: none;
}
.composer__input:focus { border-color: var(--accent); }
.composer__btn { align-self: flex-start; }
.composer__btn:disabled { opacity: 0.5; cursor: default; }
.cmt__actions { margin-top: 6px; }
.cmt__reply { background: none; border: none; cursor: pointer; font-family: var(--font-body), sans-serif; font-size: 11.5px; font-weight: 600; color: var(--accent-bright); }

/* ---------- watchlist ---------- */
.saved-item { position: relative; }
.saved-item__remove {
  position: absolute; z-index: 3; top: 8px; right: 8px; cursor: pointer;
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2); color: #fff; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.saved-item__remove svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.saved-item__remove:hover { background: rgba(248,113,113,0.5); }
.empty-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

/* search */
.search { max-width: 720px; }
.search__input {
  width: 100%; font-family: var(--font-body), sans-serif; font-size: 15px; color: var(--txt);
  padding: 13px 16px; border-radius: 11px; border: 1px solid var(--line-strong); background: var(--bg-2);
  margin-bottom: 8px; outline: none;
}
.search__input:focus { border-color: var(--accent); }
.search__input::placeholder { color: var(--txt-4); }
.search .comments__head { margin-top: 22px; }

/* ============================================================
   Shorts — full-screen vertical feed (adapted from Shorts.html)
   ============================================================ */
.sfeed-page { position: fixed; inset: 0; background: #000; overflow: hidden; }

/* top overlay bar */
.sfeed-top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20; height: 60px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), transparent);
  pointer-events: none;
}
.sfeed-top > * { pointer-events: auto; }
.sfeed-top-spacer { width: 38px; }
.sfeed-back {
  width: 38px; height: 38px; border-radius: 99px; display: grid; place-items: center;
  background: rgba(0,0,0,0.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,0.15);
}
.sfeed-back svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; }
.sfeed-toplabel { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 16px; color: #fff; }

/* scroll-snap feed */
.sfeed { height: 100dvh; overflow-y: auto; scroll-snap-type: y mandatory; scrollbar-width: none; background: #000; }
.sfeed::-webkit-scrollbar { display: none; }
.sfeed-sentinel { height: 1px; }
.sfeed-empty {
  height: 100dvh; display: grid; place-items: center; color: var(--txt-3);
  font-family: var(--font-body), sans-serif; font-size: 14px;
}

.sfeed-item { height: 100dvh; scroll-snap-align: start; display: grid; place-items: center; background: #000; }
/* On desktop the short is a centered 9:16 column; on phones it fills the width. */
.sfeed-stage {
  position: relative; height: 100%; width: 100%; max-width: calc(100dvh * 9 / 16);
  overflow: hidden; background: #000;
}
.sfeed-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.sfeed-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sfeed-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.sfeed-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0.5) 0%, transparent 22%, transparent 55%, rgba(2,6,23,0.85) 100%);
}
.sfeed-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 5;
  width: 62px; height: 62px; border-radius: 99px; display: grid; place-items: center;
  background: rgba(255,255,255,0.14); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25);
}
.sfeed-play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }

/* right action rail */
.sfeed-rail {
  position: absolute; right: 10px; bottom: 84px; z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.sfeed-ava {
  position: relative; width: 46px; height: 46px; border-radius: 99px; overflow: hidden;
  display: grid; place-items: center; border: 2px solid #fff; background-size: cover; background-position: center;
}
.sfeed-ava span { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 16px; color: #fff; }
.sfeed-act { display: flex; flex-direction: column; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; color: #fff; }
.sfeed-ic { display: grid; place-items: center; }
.sfeed-act svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 1.9; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45)); }
.sfeed-act.is-on svg { fill: var(--accent-bright); stroke: var(--accent-bright); }
.sfeed-act b { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11px; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* bottom-left info */
.sfeed-info { position: absolute; left: 14px; right: 78px; bottom: 30px; z-index: 6; }
.sfeed-name { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 15px; color: #fff; }
.sfeed-name svg { width: 14px; height: 14px; fill: var(--accent-bright); stroke: none; }
.sfeed-title { font-family: var(--font-body), sans-serif; font-size: 13px; color: rgba(255,255,255,0.92); margin-top: 7px; line-height: 1.4; }
.sfeed-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.sfeed-tags span { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12px; color: var(--accent-bright); }

/* progress bar */
.sfeed-progress { position: absolute; left: 0; right: 0; bottom: 0; z-index: 7; height: 3px; background: rgba(255,255,255,0.18); }
.sfeed-progress i { display: block; height: 100%; background: var(--accent-bright); width: 0; }

/* ad slot */
.sfeed-ad-badge {
  position: absolute; top: 70px; left: 14px; z-index: 8;
  font-family: var(--font-body), sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; background: #f59e0b; padding: 4px 9px; border-radius: 5px;
}
.sfeed-title--ad { font-weight: 600; }
.sfeed-skip {
  position: absolute; right: 14px; bottom: 96px; z-index: 8; pointer-events: auto;
  font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 12.5px; color: #fff;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.3); padding: 8px 14px; border-radius: 7px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); cursor: pointer;
}
.sfeed-skip:disabled { opacity: 0.6; cursor: default; }
/* unmute toggle */
.sfeed-mute {
  position: absolute; top: 70px; right: 14px; z-index: 8;
  width: 40px; height: 40px; border-radius: 99px; display: grid; place-items: center;
  background: rgba(0,0,0,0.45); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18); color: #fff; cursor: pointer;
}
.sfeed-mute svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 2; }

/* shorts comment bottom-sheet */
.scomments { position: absolute; inset: 0; z-index: 30; display: flex; align-items: flex-end; background: rgba(0,0,0,0.35); }
.scomments__sheet {
  width: 100%; max-height: 62%; display: flex; flex-direction: column;
  background: var(--bg-2); border-top-left-radius: 16px; border-top-right-radius: 16px;
  border-top: 1px solid var(--line-strong); box-shadow: 0 -16px 40px rgba(0,0,0,0.5);
}
.scomments__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 10px; border-bottom: 1px solid var(--line); }
.scomments__head h3 { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 15px; color: var(--txt); }
.scomments__close { background: none; border: none; color: var(--txt-3); font-size: 22px; line-height: 1; cursor: pointer; }
.scomments__list { flex: 1 1; overflow-y: auto; padding: 12px 16px; display: flex; flex-direction: column; gap: 14px; }
.scomment__head { display: flex; align-items: center; gap: 10px; }
.scomment__author { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 13px; color: var(--txt); }
.scomment__time { font-family: var(--font-body), sans-serif; font-size: 11px; color: var(--txt-4); }
.scomment__body { font-family: var(--font-body), sans-serif; font-size: 13.5px; line-height: 1.5; color: var(--txt-2); margin-top: 3px; }
.scomments__composer { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); }
.scomments__composer input {
  flex: 1 1; font-family: var(--font-body), sans-serif; font-size: 13.5px; color: var(--txt);
  padding: 10px 13px; border-radius: 10px; border: 1px solid var(--line-strong); background: var(--bg); outline: none;
}
.scomments__composer input:focus { border-color: var(--accent); }

/* ============================================================
   Home sections — ported from the template (Direction A), made
   responsive. Section primitives (.card/.thumb/.sec-head/.grid)
   are reused from above; these add the home-only components.
   ============================================================ */

/* section head with leading icon (Shorts / Galleries) */
.sec-head .ic { display: inline-flex; align-items: center; gap: 8px; }
.sec-head .ic svg { width: 17px; height: 17px; stroke: var(--accent-bright); fill: none; stroke-width: 1.8; }
.sec-head h2 .ic svg { fill: var(--accent-bright); stroke: none; }

/* integrated tab/filter bar */
.a__tabs {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 16px 0 14px; margin-top: 4px; border-bottom: 1px solid var(--line);
}
.a__tabs::-webkit-scrollbar { display: none; }
.a__tab {
  flex: 0 0 auto; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 13px;
  color: var(--txt-3); background: transparent; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 99px; white-space: nowrap; transition: all 0.15s ease;
}
.a__tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.a__tab:not(.active):hover { color: var(--txt); border-color: var(--line-strong); }

/* ---------- Viboo Shorts rail (9:16) ---------- */
.shorts-rail { display: flex; gap: var(--gap); overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.shorts-rail::-webkit-scrollbar { display: none; }
.short { flex: 0 0 clamp(130px, 30vw, 160px); cursor: pointer; display: block; }
.short__thumb {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--r-md); overflow: hidden;
  background: var(--surface); border: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.short__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1); }
.short__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 6, 23, 0.35) 0%, transparent 30%, transparent 60%, rgba(2, 6, 23, 0.85) 100%); }
.short__bolt {
  position: absolute; left: 8px; top: 8px; z-index: 4; display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-body), sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: #fff;
  background: rgba(var(--accent-rgb), 0.85); padding: 3px 7px 3px 5px; border-radius: 99px;
}
.short__bolt svg { width: 10px; height: 10px; fill: #fff; }
.short__dur {
  position: absolute; right: 8px; top: 8px; z-index: 4; font-family: var(--font-mono), monospace; font-size: 9.5px; color: #fff;
  background: rgba(0, 0, 0, 0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 2px 6px; border-radius: 5px;
}
.short__views {
  position: absolute; left: 9px; bottom: 9px; z-index: 4; display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-body), sans-serif; font-size: 10.5px; font-weight: 600; color: #fff;
}
.short__views svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.short__play {
  position: absolute; left: 50%; top: 50%; z-index: 5; width: 40px; height: 40px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid; place-items: center; transform: translate(-50%, -50%) scale(0.8); opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
}
.short__play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
.short:hover .short__img { transform: scale(1.07); }
.short:hover .short__thumb { box-shadow: var(--glow); border-color: rgba(var(--accent-rgb), 0.5); }
.short:hover .short__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.short__title {
  margin-top: 7px; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 12px; color: var(--txt-2); line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ---------- Browse by Category — gradient tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: var(--gap); gap: var(--gap); }
@media (min-width: 560px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px)  { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .cat-grid { grid-template-columns: repeat(5, 1fr); } }
.cat-tile {
  position: relative; height: 72px; border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.cat-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.92; }
.cat-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(2, 6, 23, 0.78) 10%, rgba(2, 6, 23, 0.25) 90%); }
.cat-tile h3 { position: relative; font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 14.5px; color: #fff; letter-spacing: -0.01em; }
.cat-tile span { position: relative; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 10.5px; color: var(--txt-2); margin-top: 2px; }
.cat-tile:hover { transform: translateY(-3px); border-color: rgba(var(--accent-rgb), 0.5); box-shadow: var(--glow); }

/* ---------- Photo Galleries (stacked-page tiles) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: var(--gap); gap: var(--gap); }
@media (min-width: 560px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px)  { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }
.g-card { cursor: pointer; display: block; }
.g-thumb {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden; margin-top: 9px; background: var(--surface);
  box-shadow: 0 -5px 0 -2px var(--surface-2), 0 -9px 0 -4px var(--bg-2);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}
.g-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1); }
.g-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.7)); }
.g-badge {
  position: absolute; right: 8px; top: 8px; z-index: 4; display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-body), sans-serif; font-size: 10.5px; font-weight: 600; color: #fff;
  background: rgba(0, 0, 0, 0.55); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); padding: 4px 8px; border-radius: 99px;
}
.g-badge svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 1.7; }
.g-meta-over {
  position: absolute; left: 10px; bottom: 9px; z-index: 4; display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-body), sans-serif; font-size: 10.5px; font-weight: 600; color: var(--txt-2);
}
.g-meta-over svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.g-card:hover .g-thumb { transform: translateY(-2px); box-shadow: 0 -5px 0 -2px var(--surface-2), 0 -9px 0 -4px var(--bg-2), var(--glow); }
.g-card:hover .g-img { transform: scale(1.06); }
.g-title { font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 13px; color: var(--txt); margin-top: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g-sub { font-family: var(--font-body), sans-serif; font-size: 11px; font-weight: 600; color: var(--txt-3); margin-top: 3px; }

/* ---------- Browse by Performer — avatar rail ---------- */
.actors-rail { display: flex; gap: calc(var(--gap) + 4px); overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.actors-rail::-webkit-scrollbar { display: none; }
.actor { flex: 0 0 auto; width: 88px; text-align: center; cursor: pointer; }
.actor__ava {
  position: relative; width: 88px; height: 88px; border-radius: 99px; overflow: hidden;
  border: 1px solid var(--line-strong); margin: 0 auto; display: grid; place-items: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.actor__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.actor__init { position: relative; z-index: 2; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 25px; color: rgba(255, 255, 255, 0.92); letter-spacing: 0.02em; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
.actor:hover .actor__ava { transform: translateY(-3px); border-color: rgba(var(--accent-rgb), 0.7); box-shadow: var(--glow); }
.actor__name { font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 12px; color: var(--txt); margin-top: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.actor__count { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 10px; color: var(--txt-4); margin-top: 2px; }

/* ---------- footer tag/chip clouds ---------- */
.footer__tags { margin: 22px 0; }
.footer__tags h5 { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-4); margin-bottom: 10px; }
.footer__tags .chips { display: flex; flex-wrap: wrap; gap: 7px; }
.footer__tags .chips--sm { gap: 7px 11px; }
.ft-chip {
  font-family: var(--font-body), sans-serif; font-size: 11.5px; font-weight: 600; color: var(--txt-3);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); padding: 6px 11px; border-radius: 99px; transition: all 0.15s ease;
}
.ft-chip:hover { color: var(--txt); border-color: var(--line-strong); }
.ft-chip--accent { color: var(--accent-bright); background: rgba(var(--accent-rgb), 0.08); border-color: rgba(var(--accent-rgb), 0.2); }
.ft-chip--accent:hover { background: rgba(var(--accent-rgb), 0.16); color: #fff; border-color: rgba(var(--accent-rgb), 0.5); }
.ft-chip--sm { font-size: 11px; font-weight: 500; padding: 0; background: transparent; border: none; border-radius: 0; color: var(--txt-4); }
.ft-chip--sm:hover { background: transparent; border-color: transparent; color: var(--txt-2); }
.footer__copy { font-family: var(--font-body), sans-serif; font-weight: 500; font-size: 10.5px; color: var(--txt-4); margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  .short__img, .g-img, .g-thumb, .cat-tile, .actor__ava { transition: none; }
}

/* ============================================================
   Auth pages — /login, /register, /forgot. Ported from the
   template (pages.css `.auth`), centered as a card on desktop.
   ============================================================ */
.auth-page {
  min-height: 100vh; display: grid; place-items: center; padding: 24px var(--pad);
  background: radial-gradient(120% 80% at 50% -10%, rgba(var(--accent-rgb), 0.10), transparent 55%), var(--bg);
}
/* the auth card is presented as a floating popup with a close (×) button */
.auth-modal {
  position: relative; width: 100%; max-width: 420px; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 18px;
  padding: 30px 24px 26px; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.auth-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); color: var(--txt-3); cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.auth-close:hover { background: rgba(255, 255, 255, 0.1); color: var(--txt); }
.auth-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.auth { position: relative; width: 100%; display: flex; flex-direction: column; }
.auth__glow {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(var(--accent-rgb), 0.3), transparent 70%);
  filter: blur(22px); pointer-events: none;
}
.auth .logo-link { position: relative; display: flex; justify-content: center; margin-bottom: 26px; }
.auth .logo { justify-content: center; font-size: 24px; }
.auth h1 { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 22px; letter-spacing: -0.02em; text-align: center; color: var(--txt); }
.auth__sub { text-align: center; font-family: var(--font-body), sans-serif; font-size: 13.5px; color: var(--txt-3); margin: 8px 0 26px; }
.field-group { margin-bottom: 14px; }
.field-label { display: block; font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-4); margin-bottom: 7px; }
.field-input {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 13px 14px; color: var(--txt); font-family: var(--font-body), sans-serif; font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field-input::placeholder { color: var(--txt-4); }
.field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.18); }
.field-pw { position: relative; }
.field-pw .field-input { padding-right: 44px; }
.pw-toggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px;
  display: grid; place-items: center; background: none; border: none; color: var(--txt-4); cursor: pointer;
}
.pw-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.auth__row { display: flex; justify-content: flex-end; margin: -2px 0 18px; }
.auth__row a { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12.5px; color: var(--accent-bright); }
.btn--full { width: 100%; padding: 14px; font-size: 15px; justify-content: center; }
.auth__age { display: flex; gap: 10px; align-items: flex-start; margin: 2px 0 18px; cursor: pointer; }
.auth__age .cbx {
  -moz-appearance: none;
       appearance: none; -webkit-appearance: none; width: 20px; height: 20px; flex: 0 0 auto;
  border: 1.5px solid var(--line-strong); border-radius: 6px; background: var(--bg-2); cursor: pointer;
  position: relative; margin-top: 1px; transition: all 0.15s ease;
}
.auth__age .cbx:checked { background: var(--accent); border-color: var(--accent); }
.auth__age .cbx:checked::after { content: ''; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.auth__age span { font-family: var(--font-body), sans-serif; font-size: 12px; line-height: 1.5; color: var(--txt-3); }
.auth__legal { text-align: center; font-family: var(--font-body), sans-serif; font-size: 11.5px; line-height: 1.5; color: var(--txt-4); margin-top: 16px; }
.auth__alt { text-align: center; font-family: var(--font-body), sans-serif; font-size: 13px; color: var(--txt-3); margin-top: 22px; }
.auth__alt a { color: var(--accent-bright); font-weight: 600; }
.auth__alt a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; vertical-align: -2px; margin-right: 2px; }
.auth__error {
  font-family: var(--font-body), sans-serif; font-size: 12.5px; color: #fca5a5;
  background: rgba(248, 113, 113, 0.1); border: 1px solid rgba(248, 113, 113, 0.25);
  padding: 9px 11px; border-radius: 9px; margin-bottom: 12px;
}
.auth__sent {
  font-family: var(--font-body), sans-serif; font-size: 12.5px; color: #86efac;
  background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 9px 11px; border-radius: 9px; margin-bottom: 12px;
}

/* ============================================================
   Sub-pages (performers / performer / gallery / account) —
   ported from the template (pages.css), centered on desktop.
   ============================================================ */
.subpage { max-width: 1000px; margin: 0 auto; }
.subpage--narrow { max-width: 640px; }
/* grids/section-heads reused from Home get the template's edge padding here */
.subpage .a__grid, .subpage .gallery-grid, .subpage .shorts-rail, .subpage .cat-grid, .subpage .sec-head {
  padding-left: var(--pad); padding-right: var(--pad);
}
.sample-note {
  font-family: var(--font-body), sans-serif; font-size: 11.5px; line-height: 1.5; color: var(--txt-4);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: 9px;
  padding: 8px 11px; margin: 0 var(--pad) 6px;
}

/* a__grid (used by performer Videos tab) — responsive */
.a__grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: var(--gap); gap: var(--gap); }
@media (min-width: 560px)  { .a__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .a__grid { grid-template-columns: repeat(4, 1fr); } }
.a__grid .thumb { aspect-ratio: 16 / 9; }

/* sub-page top bar */
.pbar {
  position: -webkit-sticky;
  position: sticky; top: 0; z-index: 50; isolation: isolate;
  display: flex; align-items: center; gap: 12px;
  padding: 13px var(--pad);
}
/* same even, masked frosted blur as .site-bar (fades out smoothly, no hard line) */
.pbar::before {
  content: ''; position: absolute; inset: -1px 0 -24px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.55) 60%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  -webkit-mask-image: linear-gradient(180deg, #000 0, #000 58%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0, #000 58%, transparent 100%);
}
.pbar__back, .pbar__act {
  width: 38px; height: 38px; border-radius: 10px; flex: 0 0 auto; display: grid; place-items: center;
  color: var(--txt); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.pbar__back:hover, .pbar__act:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--line-strong); }
.pbar__back svg, .pbar__act svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.pbar__title { flex: 1 1; min-width: 0; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 16px; color: var(--txt); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pbar__right { display: flex; gap: 8px; }

/* browse head + sort chips */
.browse-head { padding: 18px var(--pad) 4px; }
.browse-head .kind { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 6px; }
.browse-head h1 { font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 22px; letter-spacing: -0.02em; color: var(--txt); }
.browse-head .count { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12.5px; color: var(--txt-4); margin-top: 5px; }
.sort-row { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; padding: 14px var(--pad) 6px; }
.sort-row::-webkit-scrollbar { display: none; }
.sort-chip {
  flex: 0 0 auto; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12.5px; color: var(--txt-3);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); padding: 8px 14px; border-radius: 99px; cursor: pointer;
  transition: all 0.15s ease; white-space: nowrap;
}
.sort-chip.active { color: #fff; background: var(--accent); border-color: var(--accent); }
.sort-chip:not(.active):hover { color: var(--txt); border-color: var(--line-strong); }

/* all-performers grid */
.perf-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: var(--gap); gap: var(--gap); padding: 8px var(--pad) 0; }
@media (min-width: 560px)  { .perf-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 820px)  { .perf-grid { grid-template-columns: repeat(6, 1fr); } }
.perf-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 15px 6px; background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line); border-radius: var(--r-md); transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease; }
.perf-card:hover { transform: translateY(-3px); border-color: rgba(var(--accent-rgb), 0.45); box-shadow: var(--glow); }
.perf-card__ava { position: relative; width: 60px; height: 60px; border-radius: 99px; overflow: hidden; display: grid; place-items: center; border: 1px solid var(--line-strong); margin-bottom: 10px; }
.perf-card__ava .bg { position: absolute; inset: 0; background-size: cover; }
.perf-card__ava span { position: relative; z-index: 1; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 20px; color: #fff; }
.perf-card__name { display: flex; align-items: center; justify-content: center; gap: 4px; max-width: 100%; font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 12.5px; color: var(--txt); white-space: nowrap; overflow: hidden; }
.perf-card__name svg { width: 12px; height: 12px; fill: var(--accent-bright); flex: 0 0 auto; }
.perf-card__stat { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 10.5px; color: var(--txt-4); margin-top: 3px; }

/* performer profile */
.phero { position: relative; }
.phero__cover { position: relative; height: 180px; overflow: hidden; }
.phero__cover .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.phero__cover .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), var(--bg)); }
.player__back {
  position: absolute; left: 12px; top: 12px; z-index: 6; width: 38px; height: 38px; border-radius: 99px;
  display: grid; place-items: center; background: rgba(0, 0, 0, 0.5); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15); cursor: pointer;
}
.player__back svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.phero__main { padding: 0 var(--pad); margin-top: -44px; position: relative; z-index: 2; }
.phero__ava { position: relative; width: 92px; height: 92px; border-radius: 99px; overflow: hidden; display: grid; place-items: center; border: 3px solid var(--bg); box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6); }
.phero__ava .bg { position: absolute; inset: 0; background-size: cover; }
.phero__ava span { position: relative; z-index: 1; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 32px; color: #fff; }
.phero__name { display: flex; align-items: center; gap: 7px; margin-top: 12px; }
.phero__name h1 { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 20px; letter-spacing: -0.02em; color: var(--txt); }
.phero__name svg { width: 19px; height: 19px; fill: var(--accent-bright); }
.phero__handle { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12.5px; color: var(--txt-4); margin-top: 2px; }
.phero__stats { display: flex; gap: 22px; margin: 16px 0; flex-wrap: wrap; }
.phero__stat { display: flex; flex-direction: column; }
.phero__stat b { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 18px; color: var(--txt); }
.phero__stat span { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11px; color: var(--txt-4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 1px; }
.phero__cta { display: flex; gap: 10px; margin-bottom: 14px; }
.phero__cta .follow-btn { flex: 1 1; padding: 12px; max-width: 320px; }
.phero__bio { font-family: var(--font-body), sans-serif; font-size: 13px; line-height: 1.6; color: var(--txt-2); margin-bottom: 6px; }
.ptabs { display: flex; gap: 4px; padding: 4px var(--pad); position: -webkit-sticky; position: sticky; top: 0; z-index: 30; background: linear-gradient(180deg, var(--bg) 70%, rgba(2, 6, 23, 0.6)); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.ptab { flex: 1 1; display: flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 13px; color: var(--txt-3); background: none; border: none; padding: 11px 0; cursor: pointer; position: relative; transition: color 0.15s ease; }
.ptab svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.ptab.active { color: var(--txt); }
.ptab.active::after { content: ''; position: absolute; left: 16%; right: 16%; bottom: 0; height: 2px; background: var(--accent); border-radius: 99px; }
.ptab-panel { padding-top: 14px; }

/* video/gallery detail body bits */
.gbody { padding: 16px var(--pad) 4px; }
.chip-cat { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #fff; background: rgba(var(--accent-rgb), 0.85); padding: 4px 10px; border-radius: 99px; margin-bottom: 10px; }
.chip-cat svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.9; flex: 0 0 auto; }
.vtitle { font-family: var(--font-display), sans-serif; font-weight: 500; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; color: var(--txt); text-wrap: balance; }
.vmeta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; margin-top: 10px; }
.vmeta span { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12px; color: var(--txt-3); }
.vmeta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.vactions { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 4px; gap: 4px; margin: 16px 0; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vaction { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; background: none; border: none; color: var(--txt-2); font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11px; transition: color 0.15s ease; }
.vaction svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.vaction:hover { color: var(--txt); }
.vaction.active { color: var(--accent-bright); }
.vaction.active svg { fill: var(--accent-bright); stroke: var(--accent-bright); }
.vdesc { font-family: var(--font-body), sans-serif; font-size: 13px; line-height: 1.6; color: var(--txt-2); margin-bottom: 12px; }
.tags-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 8px; }
.tag-chip { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11.5px; color: var(--txt-3); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); padding: 6px 11px; border-radius: 99px; transition: all 0.15s ease; }
.tag-chip:hover { color: var(--txt); border-color: var(--line-strong); }

/* performer chip + follow button */
.perf-chip { display: flex; align-items: center; gap: 12px; padding: 11px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 16px; }
.perf-chip__link { display: flex; align-items: center; gap: 12px; flex: 1 1; min-width: 0; }
.perf-chip__ava { position: relative; width: 42px; height: 42px; border-radius: 99px; overflow: hidden; display: grid; place-items: center; border: 1px solid var(--line-strong); flex: 0 0 auto; }
.perf-chip__ava .bg { position: absolute; inset: 0; background-size: cover; }
.perf-chip__ava span { position: relative; z-index: 1; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 16px; color: #fff; }
.perf-chip__info { flex: 1 1; min-width: 0; }
.perf-chip__name { display: flex; align-items: center; gap: 5px; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 14px; color: var(--txt); }
.perf-chip__name svg { width: 14px; height: 14px; fill: var(--accent-bright); }
.perf-chip__sub { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11.5px; color: var(--txt-4); margin-top: 1px; }
.follow-btn { flex: 0 0 auto; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 13px; color: #fff; background: var(--accent); border: none; padding: 9px 18px; border-radius: 99px; cursor: pointer; transition: background 0.15s ease; }
.follow-btn:hover { background: var(--accent-deep); }
.follow-btn.following { background: rgba(255, 255, 255, 0.08); color: var(--txt-2); border: 1px solid var(--line-strong); }

/* gallery photo masonry */
.photo-grid { column-count: 2; column-gap: var(--gap); padding: 8px var(--pad) 0; }
@media (min-width: 560px)  { .photo-grid { column-count: 3; } }
@media (min-width: 900px)  { .photo-grid { column-count: 4; } }
.photo { position: relative; page-break-inside: avoid; break-inside: avoid; margin-bottom: var(--gap); border-radius: var(--r-md); overflow: hidden; background: var(--surface); border: 1px solid rgba(255, 255, 255, 0.05); display: block; width: 100%; padding: 0; cursor: pointer; transition: box-shadow 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1); }
.photo .pimg { width: 100%; display: block; background-size: cover; background-position: center; }
.photo:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.photo__no { position: absolute; left: 8px; top: 8px; z-index: 3; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 10px; color: #fff; background: rgba(0, 0, 0, 0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 2px 7px; border-radius: 99px; }

/* photo lightbox (full-screen) */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(0, 0, 0, 0.94); }
.lb-img { width: min(86%, 520px); max-height: 80vh; border-radius: 14px; box-shadow: 0 30px 80px -20px #000; background-size: cover; background-position: center; }
.lb-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-strong); color: #fff; display: grid; place-items: center; cursor: pointer; font-size: 22px; line-height: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-strong); color: #fff; display: grid; place-items: center; cursor: pointer; }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-nav svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.lb-cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; font-family: var(--font-mono), monospace; font-size: 12px; color: var(--txt-2); }

/* account */
.acct-head { display: flex; align-items: center; gap: 14px; padding: 20px var(--pad) 16px; }
.acct-ava { position: relative; width: 60px; height: 60px; border-radius: 99px; overflow: hidden; display: grid; place-items: center; border: 1px solid var(--line-strong); flex: 0 0 auto; }
.acct-ava .bg { position: absolute; inset: 0; background-size: cover; }
.acct-ava span { position: relative; z-index: 1; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 22px; color: #fff; }
.acct-name { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 18px; color: var(--txt); }
.acct-email { font-family: var(--font-body), sans-serif; font-size: 12.5px; color: var(--txt-4); margin-top: 2px; }
.plan-card { margin: 4px var(--pad) 8px; padding: 16px; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--accent-deep), var(--accent)); position: relative; overflow: hidden; }
.plan-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 50%); pointer-events: none; }
.plan-card__top { display: flex; justify-content: space-between; align-items: center; position: relative; }
.plan-badge { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.12em; color: #fff; background: rgba(255, 255, 255, 0.22); padding: 4px 9px; border-radius: 99px; }
.plan-renew { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11.5px; color: rgba(255, 255, 255, 0.9); }
.plan-card__name { position: relative; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 20px; color: #fff; margin-top: 12px; }
.plan-card__sub { position: relative; font-family: var(--font-body), sans-serif; font-size: 12px; color: rgba(255, 255, 255, 0.88); margin-top: 3px; }
.plan-card__btn { position: relative; display: block; text-align: center; margin-top: 14px; width: 100%; padding: 11px; border-radius: 10px; border: none; background: rgba(255, 255, 255, 0.96); color: var(--accent-deep); font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; }
.settings-group { margin-top: 14px; }
.settings-group h5 { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-4); padding: 0 var(--pad); margin-bottom: 6px; }
.srow { display: flex; align-items: center; gap: 13px; padding: 13px var(--pad); width: 100%; background: none; border: none; text-align: left; cursor: pointer; }
.srow + .srow { border-top: 1px solid var(--line); }
.srow__ic { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 9px; background: var(--surface); display: grid; place-items: center; color: var(--txt-2); }
.srow__ic svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.srow__label { flex: 1 1; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 14px; color: var(--txt); }
.srow__val { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12.5px; color: var(--txt-4); }
.srow__chev { color: var(--txt-4); display: grid; place-items: center; }
.srow__chev svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.srow--danger { margin-top: 14px; border-top: 1px solid var(--line); }
.srow--danger .srow__ic { color: #f87171; background: rgba(248, 113, 113, 0.12); }
.srow--danger .srow__ic svg { stroke: currentColor; }
.srow--danger .srow__label { color: #f87171; }
.acct-ver { text-align: center; font-family: var(--font-body), sans-serif; font-size: 11px; color: var(--txt-4); padding: 20px; }

/* ============================================================
   Settings sub-pages, notifications, billing/payment, tags —
   ported from the template (pages.css).
   ============================================================ */
.set-body { padding-bottom: 24px; }
.settings-card { background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin: 0 var(--pad); }
.set-row { display: flex; align-items: center; gap: 13px; padding: 13px 14px; }
.set-row + .set-row { border-top: 1px solid var(--line); }
.set-row__txt { flex: 1 1; min-width: 0; }
.set-row__label { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 14px; color: var(--txt); }
.set-row__sub { font-family: var(--font-body), sans-serif; font-size: 11.5px; color: var(--txt-4); margin-top: 2px; line-height: 1.4; }
.settings-card .srow { padding: 13px 14px; }
.settings-card .srow + .srow { border-top: 1px solid var(--line); }

.vswitch { width: 44px; height: 26px; border-radius: 99px; background: var(--surface-2); border: 1px solid var(--line-strong); position: relative; cursor: pointer; flex: 0 0 auto; transition: background 0.2s ease, border-color 0.2s ease; }
.vswitch::after { content: ''; position: absolute; left: 3px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 99px; background: #fff; transition: left 0.2s cubic-bezier(0.3, 0.7, 0.3, 1); }
.vswitch.on { background: var(--accent); border-color: var(--accent); }
.vswitch.on::after { left: 22px; }

.opt-group { margin: 0 var(--pad); }
.opt-row { width: 100%; display: flex; align-items: center; gap: 12px; padding: 13px 14px; background: none; border: none; cursor: pointer; text-align: left; }
.opt-row + .opt-row { border-top: 1px solid var(--line); }
.opt-check { width: 22px; height: 22px; border-radius: 99px; border: 1.5px solid var(--line-strong); display: grid; place-items: center; flex: 0 0 auto; }
.opt-check svg { width: 14px; height: 14px; fill: #fff; opacity: 0; }
.opt-row.checked .opt-check { background: var(--accent); border-color: var(--accent); }
.opt-row.checked .opt-check svg { opacity: 1; }

.set-note { font-family: var(--font-body), sans-serif; font-size: 11.5px; line-height: 1.5; color: var(--txt-4); padding: 10px var(--pad) 0; }
.save-bar { padding: 18px var(--pad) 8px; }

/* edit profile */
.edit-ava { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 0 8px; }
.edit-ava__img { position: relative; width: 84px; height: 84px; border-radius: 22px; overflow: hidden; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line-strong); color: var(--txt-3); }
.edit-ava__img svg { width: 38px; height: 38px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.edit-ava__btn { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 13px; color: var(--accent-bright); background: none; border: none; cursor: pointer; }
.set-form { padding: 8px var(--pad) 0; }
.set-form .field-input { width: 100%; }
textarea.field-input { resize: vertical; min-height: 84px; line-height: 1.5; }

/* search field (help) */
.search-field { display: flex; align-items: center; gap: 8px; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 99px; padding: 9px 12px; }
.search-field svg { width: 18px; height: 18px; stroke: var(--txt-4); fill: none; stroke-width: 1.9; flex: 0 0 auto; }
.search-field input { flex: 1 1; min-width: 0; background: none; border: none; color: var(--txt); font-family: var(--font-body), sans-serif; font-size: 14px; outline: none; }
.search-field input::placeholder { color: var(--txt-4); }

/* payment + billing */
.pay-card { margin: 10px var(--pad) 4px; padding: 15px; border-radius: var(--r-lg); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong); display: flex; align-items: center; gap: 14px; }
.pay-card__logo { width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto; display: grid; place-items: center; background: linear-gradient(135deg, #6d5efc, #4f46e5); color: #fff; }
.pay-card__logo svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.9; }
.pay-card__info { flex: 1 1; min-width: 0; }
.pay-card__name { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 15px; color: var(--txt); display: flex; align-items: center; gap: 7px; }
.pay-card__sub { font-family: var(--font-body), sans-serif; font-size: 12px; color: var(--txt-4); margin-top: 2px; }
.pay-badge { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 9.5px; letter-spacing: 0.08em; color: #34d399; background: rgba(52, 211, 153, 0.14); padding: 3px 7px; border-radius: 99px; }
.bill-row { display: flex; align-items: center; gap: 12px; padding: 13px 14px; }
.bill-row + .bill-row { border-top: 1px solid var(--line); }
.bill-row__ic { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 10px; display: grid; place-items: center; background: rgba(52, 211, 153, 0.14); color: #34d399; }
.bill-row__ic svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.bill-row__ic.pending { background: rgba(245, 158, 11, 0.14); color: #fbbf24; }
.bill-row__ic.failed { background: rgba(248, 113, 113, 0.14); color: #f87171; }
.bill-row__body { flex: 1 1; min-width: 0; }
.bill-row__title { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 13.5px; color: var(--txt); }
.bill-row__sub { font-family: var(--font-body), sans-serif; font-size: 11.5px; color: var(--txt-4); margin-top: 2px; }
.bill-row__right { text-align: right; flex: 0 0 auto; }
.bill-row__amt { font-family: var(--font-body), sans-serif; font-weight: 700; font-size: 13.5px; color: var(--txt); }
.bill-status { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 10.5px; margin-top: 3px; }
.bill-status.paid { color: #34d399; }
.bill-status.pending { color: #fbbf24; }
.bill-status.failed { color: #f87171; }

/* notifications */
.notif { display: flex; align-items: center; gap: 12px; padding: 14px var(--pad); border-bottom: 1px solid var(--line); position: relative; }
.notif--unread { background: rgba(var(--accent-rgb), 0.06); }
.notif--unread::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); }
.notif__lead { position: relative; width: 42px; height: 42px; border-radius: 99px; overflow: hidden; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line-strong); }
.notif__lead .bg { position: absolute; inset: 0; background-size: cover; }
.notif__lead span { position: relative; z-index: 1; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 15px; color: #fff; }
.notif__lead.icon { background: rgba(var(--accent-rgb), 0.14); border-color: rgba(var(--accent-rgb), 0.3); color: var(--accent-bright); }
.notif__lead.icon svg { width: 19px; height: 19px; }
.notif__lead.icon.fill svg { fill: var(--accent-bright); stroke: none; }
.notif__lead.icon.stroke svg { fill: none; stroke: var(--accent-bright); stroke-width: 1.9; }
.notif__body { flex: 1 1; min-width: 0; }
.notif__text { font-family: var(--font-body), sans-serif; font-size: 13px; line-height: 1.45; color: var(--txt-2); }
.notif__text b { color: var(--txt); font-weight: 700; }
.notif__sub { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12.5px; color: var(--accent-bright); margin-top: 2px; }
.notif__time { font-family: var(--font-body), sans-serif; font-weight: 500; font-size: 11px; color: var(--txt-4); margin-top: 4px; }
.notif__thumb { width: 56px; height: 36px; border-radius: 8px; flex: 0 0 auto; background-size: cover; background-position: center; border: 1px solid rgba(255, 255, 255, 0.06); }

/* tags cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; padding: 4px var(--pad) 8px; }
.tag-pill { display: inline-flex; align-items: baseline; gap: 6px; font-family: var(--font-display), sans-serif; font-weight: 500; color: var(--txt-2); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 99px; padding: 8px 13px; line-height: 1; transition: all 0.15s ease; }
.tag-pill__n { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 0.7em; color: var(--txt-4); }
.tag-pill:hover { color: #fff; border-color: rgba(var(--accent-rgb), 0.5); background: rgba(var(--accent-rgb), 0.1); transform: translateY(-2px); }
.tag-pill:hover .tag-pill__n { color: var(--accent-bright); }
.tag-pill--sm { font-size: 12.5px; }
.tag-pill--md { font-size: 14.5px; }
.tag-pill--lg { font-size: 17px; color: var(--txt); }
.tag-pill--xl { font-size: 20px; color: #fff; background: rgba(var(--accent-rgb), 0.1); border-color: rgba(var(--accent-rgb), 0.28); }
.tag-pill--xl .tag-pill__n { color: var(--accent-bright); }

/* ============================================================
   Video Detail (watch) + Browse/Categories/Search reworks
   ============================================================ */
.watch-player { position: relative; }
.vbody { padding: 16px var(--pad) 4px; }
.watch-comments { padding: 6px var(--pad) 0; }
.cat-tile--lg { height: 92px; padding: 0 16px; }
.cat-tile--lg h3 { font-size: 16px; }

/* photo rail (video detail) */
.photo-rail { display: flex; gap: var(--gap); overflow-x: auto; scrollbar-width: none; padding: 0 var(--pad) 4px; }
.photo-rail::-webkit-scrollbar { display: none; }
.prail-item { flex: 0 0 118px; position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); transition: box-shadow 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1); }
.prail-item .pimg { width: 100%; aspect-ratio: 3 / 4; background-size: cover; background-position: center; display: block; }
.prail-item:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.prail-more { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(2, 6, 23, 0.62); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 20px; color: #fff; }

/* search */
.pbar--search { gap: 10px; }
.search-clear { background: none; border: none; color: var(--txt-4); cursor: pointer; display: grid; place-items: center; padding: 0; }
.search-clear svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.search-body { padding-top: 8px; }
.search-block { padding: 8px var(--pad) 4px; }
.search-block__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.search-block__head h3 { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 14px; color: var(--txt); }
.search-link { background: none; border: none; color: var(--accent-bright); font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12px; cursor: pointer; }
.chip-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.recent-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12.5px; color: var(--txt-2); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); padding: 7px 11px; border-radius: 99px; cursor: pointer; }
.recent-chip svg { width: 13px; height: 13px; stroke: var(--txt-4); fill: none; stroke-width: 1.8; }
.recent-chip .recent-x { display: inline-grid; place-items: center; opacity: 0.7; }
.recent-chip .recent-x svg { width: 12px; height: 12px; }

/* ============================================================
   Comments (video detail) — template style
   ============================================================ */
.comments__composer { display: flex; gap: 10px; margin: 12px 0 18px; align-items: flex-start; }
.comments__composer .avatar { flex: 0 0 auto; }
.comments__composer .field { flex: 1 1; display: flex; align-items: flex-end; gap: 8px; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 16px; padding: 10px 10px 10px 14px; }
.comments__composer textarea { flex: 1 1; min-width: 0; background: none; border: none; color: var(--txt); font-family: var(--font-body), sans-serif; font-size: 13px; resize: none; line-height: 1.5; max-height: 140px; padding: 6px 0; outline: none; }
.comments__composer textarea::placeholder { color: var(--txt-4); }
.comments__composer .send { width: 34px; height: 34px; border-radius: 99px; background: var(--accent); border: none; display: grid; place-items: center; color: #fff; cursor: pointer; flex: 0 0 auto; }
.comments__composer .send:disabled { opacity: 0.5; cursor: default; }
.comments__composer .send svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.comment-list { display: flex; flex-direction: column; }
.comment { display: flex; gap: 10px; margin-bottom: 16px; }
.comment__ava { width: 36px; height: 36px; border-radius: 99px; flex: 0 0 auto; display: grid; place-items: center; font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 13px; color: #fff; overflow: hidden; position: relative; }
.comment__ava .bg { position: absolute; inset: 0; background-size: cover; }
.comment__ava span { position: relative; z-index: 1; }
.comment__body { flex: 1 1; min-width: 0; }
.comment__head { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.comment__name { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 13px; color: var(--txt); }
.comment__time { font-family: var(--font-body), sans-serif; font-weight: 500; font-size: 11px; color: var(--txt-4); }
.comment__text { font-family: var(--font-body), sans-serif; font-size: 13px; line-height: 1.5; color: var(--txt-2); }
.comment__actions { display: flex; gap: 16px; margin-top: 7px; }
.comment__actions button { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11.5px; color: var(--txt-4); cursor: pointer; background: none; border: none; }
.comment__actions svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.comment__actions .cmt-like.active { color: var(--accent-bright); }
.comment__actions .cmt-like.active svg { fill: var(--accent-bright); stroke: var(--accent-bright); }
.comment__actions .cmt-reply.active { color: var(--accent-bright); }
.reply-box { margin-top: 10px; }
.comment__replies { margin-top: 12px; padding-left: 14px; border-left: 1px solid var(--line); }

/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[3].use[1]!../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[13].oneOf[3].use[2]!../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/local/target.css?{"path":"app/fonts.ts","import":"","arguments":[{"src":[{"path":"./fonts/GeneralSans-400.woff2","weight":"400","style":"normal"},{"path":"./fonts/GeneralSans-500.woff2","weight":"500","style":"normal"},{"path":"./fonts/GeneralSans-600.woff2","weight":"600","style":"normal"},{"path":"./fonts/GeneralSans-700.woff2","weight":"700","style":"normal"}],"variable":"--font-display","display":"swap"}],"variableName":"generalSans"} ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@font-face {
font-family: 'generalSans';
src: url(/_next/static/media/eb38d80f1efefe0e-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'generalSans';
src: url(/_next/static/media/c769b9ad37242ab7-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 500;
font-style: normal;
}

@font-face {
font-family: 'generalSans';
src: url(/_next/static/media/bd2e31d9f13a7622-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 600;
font-style: normal;
}

@font-face {
font-family: 'generalSans';
src: url(/_next/static/media/ae798fbcd31d4786-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 700;
font-style: normal;
}@font-face {font-family: 'generalSans Fallback';src: local("Arial");ascent-override: 99.89%;descent-override: 23.74%;line-gap-override: 9.89%;size-adjust: 101.11%
}.__className_2d3193 {font-family: 'generalSans', 'generalSans Fallback'
}.__variable_2d3193 {--font-display: 'generalSans', 'generalSans Fallback'
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[3].use[1]!../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[13].oneOf[3].use[2]!../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/local/target.css?{"path":"app/fonts.ts","import":"","arguments":[{"src":[{"path":"./fonts/Satoshi-400.woff2","weight":"400","style":"normal"},{"path":"./fonts/Satoshi-500.woff2","weight":"500","style":"normal"},{"path":"./fonts/Satoshi-700.woff2","weight":"700","style":"normal"},{"path":"./fonts/Satoshi-900.woff2","weight":"900","style":"normal"}],"variable":"--font-body","display":"swap"}],"variableName":"satoshi"} ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@font-face {
font-family: 'satoshi';
src: url(/_next/static/media/b1dca2a5d44fc7a4-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'satoshi';
src: url(/_next/static/media/22539d17f3707926-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 500;
font-style: normal;
}

@font-face {
font-family: 'satoshi';
src: url(/_next/static/media/12084922609e6532-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 700;
font-style: normal;
}

@font-face {
font-family: 'satoshi';
src: url(/_next/static/media/c6d20a6ba91d97e6-s.p.woff2) format('woff2');
font-display: swap;
font-weight: 900;
font-style: normal;
}@font-face {font-family: 'satoshi Fallback';src: local("Arial");ascent-override: 102.23%;descent-override: 24.29%;line-gap-override: 10.12%;size-adjust: 98.80%
}.__className_f8e066 {font-family: 'satoshi', 'satoshi Fallback'
}.__variable_f8e066 {--font-body: 'satoshi', 'satoshi Fallback'
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[2].use[1]!../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[13].oneOf[2].use[2]!../../node_modules/.pnpm/next@15.1.3_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/google/target.css?{"path":"app/fonts.ts","import":"IBM_Plex_Mono","arguments":[{"weight":["400","500","600"],"subsets":["latin"],"variable":"--font-mono","display":"swap"}],"variableName":"plexMono"} ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/58f386aa6b1a2a92-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/011e180705008d6f-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/7ba5fb2a8c88521c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/92eeb95d069020cc-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/d3ebbfd689654d3a-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/ef4d5661765d0e49-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/d29838c109ef09b4-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/e40af3453d7c920a-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/99dcf268bda04fe5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/98e207f02528a563-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/73cb51aac9c97f90-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/d26bbd13d6b70f89-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/20535187d867b7b9-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/5356a6a4f2c8c8d8-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/db96af6b531dc71f-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'IBM Plex Mono Fallback';src: local("Arial");ascent-override: 76.16%;descent-override: 20.43%;line-gap-override: 0.00%;size-adjust: 134.59%
}.__className_595324 {font-family: 'IBM Plex Mono', 'IBM Plex Mono Fallback';font-style: normal
}.__variable_595324 {--font-mono: 'IBM Plex Mono', 'IBM Plex Mono Fallback'
}

