/* =========================================================
   2ezjep · completely fresh concept
   Style: editorial / zine · off-white paper + jet ink + spot color
   Goal: feel NOTHING like ciwing-rush's HUD/CRT.
   ========================================================= */

:root{
  /* palette */
  --paper:        #f3eee5;
  --paper-2:      #e9e2d2;
  --ink:          #0b0a0d;
  --ink-soft:     #2a272a;
  --ink-mute:     #6b6660;
  --rule:         #161319;
  --hot:          #ff3b2f;   /* spot red */
  --acid:         #d8ff3d;   /* spot lime */
  --cobalt:       #2a4cff;
  --tint:         rgba(11,10,13,.06);
  --tint-strong:  rgba(11,10,13,.12);

  /* type */
  --serif: "Bricolage Grotesque", ui-serif, Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* layout */
  --max: 1280px;
  --pad: clamp(16px, 4vw, 40px);
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{max-width:100%; display:block}
a{color:inherit}
button{font:inherit; cursor:pointer; border:0; background:none; color:inherit}

::selection{ background: var(--hot); color: var(--paper); }

/* paper grain */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(1px 1px at 13% 17%, rgba(0,0,0,.12) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 32%, rgba(0,0,0,.10) 50%, transparent 51%),
    radial-gradient(1px 1px at 41% 78%, rgba(0,0,0,.10) 50%, transparent 51%),
    radial-gradient(1px 1px at 86% 84%, rgba(0,0,0,.08) 50%, transparent 51%);
  background-size: 180px 180px;
  opacity:.55;
  mix-blend-mode: multiply;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar{
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.topbar__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.topbar__brand{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none; color: var(--ink);
}
.topbar__brand-mark{
  width:32px;height:32px;border-radius:50%;
  background: var(--ink); color: var(--paper);
  font-family: var(--serif); font-weight: 800;
  display:grid; place-items:center; font-size: 13px;
  letter-spacing:.04em;
}
.topbar__brand-name{
  font-family: var(--serif);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.02em;
}
.topbar__brand-name span{ font-style: italic; font-weight: 400; }
.topbar__nav{ display:flex; align-items:center; gap: 18px; flex-wrap: wrap; }
.topbar__nav a{
  font-size: 13.5px; font-weight: 600;
  text-decoration: none; color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
.topbar__nav a:hover{ border-color: var(--ink); color: var(--ink); }
.topbar__cta{
  background: var(--ink) !important; color: var(--paper) !important;
  padding: 8px 14px !important; border-radius: 999px;
  border: 0 !important;
}
.topbar__cta:hover{ background: var(--hot) !important; border-color: transparent !important; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero__bg{
  position:absolute; inset:0;
  pointer-events:none; z-index:0;
  filter: blur(70px); opacity:.55;
}
.hero__blob{
  position:absolute; border-radius: 50%;
  display:block;
}
.hero__blob--a{
  width: 480px; height: 480px; left: -120px; top: -100px;
  background: var(--hot);
}
.hero__blob--b{
  width: 520px; height: 520px; right: -120px; top: 40px;
  background: var(--acid);
}
.hero__blob--c{
  width: 380px; height: 380px; left: 38%; bottom: -160px;
  background: var(--cobalt);
}

.hero__grid{
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 96px) var(--pad) clamp(48px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px){
  .hero__grid{ grid-template-columns: 1fr; }
}

.hero__chip{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing:.12em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 6px 12px; border-radius: 999px;
}
.hero__chip-dot{
  width:7px; height:7px; border-radius:50%;
  background: var(--acid); box-shadow: 0 0 0 0 var(--acid);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse{
  0%   { box-shadow: 0 0 0 0 rgba(216,255,61,.7); }
  100% { box-shadow: 0 0 0 10px rgba(216,255,61,0); }
}

.hero__title{
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 132px);
  line-height: .92;
  letter-spacing: -.04em;
  margin: 18px 0 18px;
}
.hero__title em{
  font-style: italic; font-weight: 400;
  color: var(--ink-mute);
  font-size: .62em; padding: 0 .15em;
}
.hero__title-stack{
  display:block;
  background: var(--ink); color: var(--paper);
  padding: .04em .22em .12em;
  border-radius: var(--r-md);
  transform: rotate(-1deg);
  margin-top: 6px;
  width: max-content;
  max-width: 100%;
}
.hero__title-line{ display:block; }
.hero__title-line:nth-child(2){
  background: var(--hot); color: var(--paper);
  margin-left: .4em;
}

.hero__lede{
  max-width: 52ch;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.hero__lede strong{ color: var(--ink); }

.hero__cta-row{ display:flex; flex-wrap:wrap; gap: 12px; margin-bottom: 32px; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight: 700; font-size: 14.5px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn--primary{
  background: var(--ink); color: var(--paper);
  box-shadow: 6px 6px 0 var(--hot);
}
.btn--primary:hover{ transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--hot); }
.btn--primary:active{ transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--hot); }

.btn--ghost{
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover{ background: var(--ink); color: var(--paper); }

.hero__pills{
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  max-width: 540px;
}
@media (max-width: 600px){
  .hero__pills{ grid-template-columns: repeat(2, 1fr); }
}
.hero__pills li{
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 10px 12px;
  font-size: 13px;
}
.hero__pills li span{
  display:block; font-family: var(--mono);
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.hero__pills li strong{ font-weight: 700; }

/* avatar poster */
.hero__poster{
  margin: 0;
  position: relative;
  justify-self: center;
  width: min(380px, 100%);
}
.hero__poster-frame{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: 14px 14px 0 var(--ink);
  aspect-ratio: 1 / 1;
}
.hero__poster-img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
}
.hero__poster-tape{
  position:absolute;
  width: 56px; height: 18px;
  background: var(--acid);
  border: 1px solid var(--ink);
}
.hero__poster-tape--tl{ top:-8px; left: 18px; transform: rotate(-7deg); }
.hero__poster-tape--tr{ top:-8px; right: 18px; transform: rotate(8deg); background: var(--hot); }
.hero__poster-tape--bl{ bottom:-8px; left: 18px; transform: rotate(6deg); background: var(--cobalt); }
.hero__poster-tape--br{ bottom:-8px; right: 18px; transform: rotate(-5deg); }

.hero__poster-cap{
  display:flex; align-items:center; justify-content:space-between;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__poster-id{ font-weight: 700; color: var(--ink); }
.hero__poster-stamp{
  background: var(--ink); color: var(--paper);
  padding: 4px 8px; border-radius: 2px;
}

/* ticker */
.hero__ticker{
  position: relative; z-index: 1;
  background: var(--ink); color: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero__ticker-track{
  display: inline-flex; gap: 36px;
  padding: 14px 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  will-change: transform;
}
.hero__ticker-track span:nth-child(3n+1){ color: var(--acid); }
.hero__ticker-track span:nth-child(3n+2){ color: var(--hot); }
.hero__ticker-track span:nth-child(3n){ color: var(--paper); }
@keyframes ticker{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* =========================================================
   STATS
   ========================================================= */
.stats{
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.stats__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 0;
}
@media (max-width: 880px){
  .stats__inner{ grid-template-columns: repeat(2, 1fr); }
  .stat--xl{ grid-column: 1 / -1; }
}
.stat{
  padding: 32px 22px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat:last-child{ border-right: 0; }
.stat--xl{
  background: var(--ink); color: var(--paper);
}
.stat--xl .stat__num{ font-size: clamp(48px, 6vw, 76px); }
.stat--xl .stat__lbl{ color: var(--acid); }
.stat__num{
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat__lbl{
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{ border-bottom: 1px solid var(--rule); }
.about__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--pad);
}
.about__head{ margin-bottom: 28px; }
.about__kicker{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--hot);
}
.about__title{
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .96;
  letter-spacing: -.03em;
  margin: 8px 0 0;
}
.about__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
@media (max-width: 760px){
  .about__grid{ grid-template-columns: 1fr; }
}
.about__bio{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.about__bio strong{ background: var(--acid); padding: 0 .12em; }
.about__card{
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-md);
  padding: 22px;
}
.about__dl{ margin:0; display:grid; gap: 12px; }
.about__dl > div{
  display: grid; grid-template-columns: 90px 1fr;
  align-items: baseline;
  border-bottom: 1px dashed rgba(255,255,255,.18);
  padding-bottom: 8px;
}
.about__dl > div:last-child{ border-bottom: 0; padding-bottom: 0; }
.about__dl dt{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); color: rgba(243,238,229,.6);
}
.about__dl dd{ margin: 0; font-weight: 600; font-size: 14.5px; word-break: break-word; }
.about__dl dd a{ color: var(--acid); text-decoration: none; border-bottom: 1px solid var(--acid); }

/* =========================================================
   FEED
   ========================================================= */
.feed{ border-bottom: 1px solid var(--rule); }
.feed__head{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--pad) 18px;
  display: flex; align-items: end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.feed__kicker{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--hot);
}
.feed__title{
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: .96;
  letter-spacing: -.03em;
  margin: 6px 0 0;
}
.feed__title em{ font-style: italic; font-weight: 400; color: var(--hot); }

.feed__filters{ display: flex; flex-wrap: wrap; gap: 8px; }
.chip{
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background .12s ease, color .12s ease;
}
.chip:hover{ background: var(--ink); color: var(--paper); }
.chip.is-active{ background: var(--ink); color: var(--paper); }

.feed__grid{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px){
  .feed__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .feed__grid{ grid-template-columns: 1fr 1fr; gap: 10px; }
}

.card{
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.card__media{
  position: relative;
  aspect-ratio: 9 / 13;
  background: var(--ink);
  overflow: hidden;
}
.card__media img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card__media img{ transform: scale(1.04); }

.card__tag{
  position:absolute; top: 10px; left: 10px;
  z-index: 2;
  background: var(--hot); color: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 700;
}
.card__rank{
  position:absolute; top: 10px; right: 10px;
  z-index: 2;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.03em;
  color: var(--paper);
  background: rgba(11,10,13,.55);
  backdrop-filter: blur(4px);
  padding: 2px 10px;
  border-radius: 4px;
  line-height: 1;
}

.card__play{
  position:absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(11,10,13,0);
  transition: background .15s ease;
}
.card__play svg{
  width: 56px; height: 56px;
  fill: var(--paper);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
  opacity: .92;
  transform: scale(.92);
  transition: transform .15s ease;
}
.card:hover .card__play{ background: rgba(11,10,13,.28); }
.card:hover .card__play svg{ transform: scale(1.04); }

.card__body{
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.card__title{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__meta{
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.card__meta .plays{ font-weight: 700; color: var(--ink); }
.card__meta .dot{ opacity: .5; padding: 0 4px; }
.card__metrics{
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  border-top: 1px dashed var(--ink-mute);
  padding-top: 8px;
}
.card__metrics b{ color: var(--ink); font-weight: 700; }

/* feed skeleton while loading */
.skeleton{
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.skeleton .sk{
  background: linear-gradient(90deg, rgba(11,10,13,.06) 0%, rgba(11,10,13,.12) 50%, rgba(11,10,13,.06) 100%);
  background-size: 200% 100%;
  animation: sk 1.4s linear infinite;
}
.skeleton .sk-m{ aspect-ratio: 9/13; }
.skeleton .sk-l{ height: 14px; margin: 12px 14px 0; }
.skeleton .sk-l.short{ width: 50%; }
@keyframes sk{ 0%{ background-position:200% 0;} 100%{ background-position:-200% 0;} }

.feed__foot,
.feed__more-wrap{
  text-align: center;
  padding: 0 var(--pad) clamp(48px, 6vw, 72px);
  margin: 0;
  display: flex; justify-content: center; align-items: center;
}
.feed__more{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--serif); font-weight: 700; font-size: 18px;
  text-decoration: none;
  background: var(--ink); color: var(--paper);
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 6px 6px 0 var(--hot);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feed__more:hover{ transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--hot); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot{ background: var(--ink); color: var(--paper); }
.foot__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 720px){
  .foot__inner{ grid-template-columns: 1fr; }
}
.foot__brand{ display:flex; align-items:center; gap:12px; }
.foot__brand-mark{
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  font-family: var(--serif); font-weight: 800; font-size: 16px;
  display:grid; place-items:center;
}
.foot__brand-name{ font-family: var(--serif); font-weight: 800; font-size: 20px; }
.foot__brand-sub{
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  color: rgba(243,238,229,.6); text-transform: uppercase;
}
.foot__nav{ display:flex; gap: 16px; flex-wrap: wrap; }
.foot__nav a{
  color: var(--paper); text-decoration: none;
  font-size: 14px; font-weight: 600;
  border-bottom: 1px solid transparent;
}
.foot__nav a:hover{ border-color: var(--acid); color: var(--acid); }

.foot__meta{
  display:flex; flex-direction:column; align-items:flex-end; gap:6px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(243,238,229,.6);
}
.foot__pill{
  background: var(--acid); color: var(--ink);
  padding: 3px 8px; border-radius: 2px; font-weight: 700;
}
.foot__pill--link{
  text-decoration: none; transition: background .15s ease, color .15s ease, transform .15s ease;
  border: 1px solid var(--ink);
}
.foot__pill--link:hover, .foot__pill--link:focus-visible{
  background: var(--ink); color: var(--acid); transform: translateY(-1px);
  outline: none;
}

/* =========================================================
   MOBILE TWEAKS
   ========================================================= */
@media (max-width: 600px){
  /* Topbar: stack brand row above nav, nav becomes its own row, CTA moves into nav */
  .topbar__inner{
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 12px var(--pad);
  }
  .topbar__brand{ flex: 1 1 auto; min-width: 0; }
  .topbar__brand-name{ font-size: 17px; }
  .topbar__nav{
    order: 3;
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }
  .topbar__nav a{ font-size: 12.5px; padding: 4px 0; }
  .topbar__nav a:not(.topbar__cta){
    padding: 6px 10px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 999px;
  }
  .topbar__nav a:not(.topbar__cta):hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .topbar__cta{
    margin-left: auto;
    padding: 7px 12px !important;
    font-size: 12.5px !important;
  }
  .hero__title-stack{ transform: rotate(0); }
  .stat{ padding: 22px 14px; }
  .stat__num{ font-size: 28px; }
  .feed__head{ padding-top: 36px; }
}

/* === Modal === */
/* Modal */
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 18px; }
.modal.is-on { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(4,6,12,0.88); backdrop-filter: blur(14px); }
.modal__box { position: relative; width: min(420px, 100%); max-height: 92vh; background: var(--bg-2, #1a1a1a); border: 1px solid var(--line, #333); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--line, #333); }
.modal__title { font-family: var(--font-mono, monospace); font-size: 11px; letter-spacing: 1.2px; color: var(--hot, #d4a948); text-transform: uppercase; }
.modal__close { background: transparent; border: 1px solid var(--line, #333); color: var(--ink-2, #aaa); width: 30px; height: 30px; border-radius: 8px; cursor: pointer; font-family: var(--font-mono, monospace); font-size: 13px; }
.modal__close:hover { color: var(--hot, #d4a948); border-color: var(--hot, #d4a948); }
.modal__embed { position: relative; aspect-ratio: 9/16; max-height: 70vh; background: #000; overflow: hidden; display: flex; align-items: center; justify-content: center; width: 100%; }
.modal__embed .skel { position: absolute; inset: 0; background-size: cover; background-position: center; }
.modal__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; margin: 0 auto; display: block; }
.modal__stats {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 12px 14px; border-top: 1px solid var(--line, #333);
  font-family: var(--font-mono, monospace); font-size: 10px;
  letter-spacing: 0.5px; color: var(--ink-2, #aaa);
  flex-wrap: wrap;
}
.modal__stats > span { text-align: center; flex: 1 1 auto; min-width: 50px; }
.modal__stats b { display: block; font-size: 14px; color: var(--accent, #0ff); margin-top: 2px; font-weight: 600; }
.modal__stat { text-align: center; }
.modal__stat b { display: block; font-size: 14px; font-family: var(--font-mono, monospace); color: var(--hot, #d4a948); }
.modal__stat .k { font-size: 9px; letter-spacing: 1.2px; color: var(--ink-2, #aaa); text-transform: uppercase; margin-top: 2px; }
