:root{--ember:#E08A3C}

/* reel.css — Side B, moving pictures. Kept out of nordgasm.css on purpose:
   new feature, new file. Same tokens, same restraint as the pressings. */

.reels{border-top:1px solid var(--hairline);margin-bottom:34px}

.reel{padding:20px 0 8px}
.reel-head{display:flex;align-items:center;gap:13px;flex-wrap:wrap;margin-bottom:14px}
.reel-title{font-size:27px;letter-spacing:.01em;color:var(--bone);line-height:1.15}
/* the title IS the label -- a red badge repeating it just said it twice.
   Borrow the topbar's chip for the accent instead. */
.reel-chip{width:7px;height:26px;border-radius:3px;flex:none;align-self:center;
  background:linear-gradient(180deg,var(--red-deep),var(--red))}
.reel-meta{font-size:11.5px;color:var(--ember);letter-spacing:.08em;margin-bottom:16px;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;text-transform:uppercase}
.reel-note{font-style:italic;color:var(--smoke);font-size:14.5px;line-height:1.65;
  max-width:64ch;margin:0 0 18px}

/* the frame: a hairline plate on the void, red only on contact */
.plate{position:relative;border:1px solid var(--hairline);border-radius:4px;
  background:#000;overflow:hidden;transition:border-color .2s}
.plate:hover{border-color:rgba(225,48,31,.42)}
.plate video{display:block;width:100%;height:auto;background:#000}

/* poster curtain + center play, gone after first press */
.curtain{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background-size:cover;background-position:center;cursor:pointer;transition:opacity .3s}
.curtain::after{content:"";position:absolute;inset:0;background:rgba(12,10,9,.42)}
.curtain.hide{opacity:0;pointer-events:none}
.bigplay{position:relative;z-index:2;width:78px;height:78px;border-radius:50%;
  border:1px solid rgba(237,230,218,.5);background:rgba(12,10,9,.55);color:var(--bone);
  display:flex;align-items:center;justify-content:center;font-size:26px;padding-left:6px;
  transition:border-color .2s,color .2s,background .2s;backdrop-filter:blur(3px)}
.curtain:hover .bigplay{border-color:var(--red);color:var(--red);background:rgba(12,10,9,.72)}

/* transport — echoes the audio deck without pretending to be it */
.vbar{display:flex;align-items:center;gap:14px;padding:11px 2px 2px}
.vbtn{width:34px;height:34px;flex:none;border-radius:50%;border:1px solid var(--hairline);
  background:transparent;color:var(--bone);display:flex;align-items:center;justify-content:center;
  font-size:13px;cursor:pointer;transition:border-color .18s,color .18s}
.vbtn:hover{border-color:var(--red);color:var(--red)}
.vbtn.lit{border-color:var(--red);color:var(--red)}
/* the glyph must never be the event target, or a press that lands on it can
   be swallowed when the label is swapped */
.vbtn > span{pointer-events:none}
.vscrub{flex:1;min-width:0;height:26px;display:flex;align-items:center;cursor:pointer}
.vtrack{position:relative;width:100%;height:2px;background:rgba(237,230,218,.16)}
.vfill{position:absolute;inset:0 auto 0 0;width:0;background:var(--red)}
.vhead{position:absolute;top:50%;width:9px;height:9px;margin:-4.5px 0 0 -4.5px;border-radius:50%;
  background:var(--red);left:0;opacity:0;transition:opacity .18s}
.vscrub:hover .vhead{opacity:1}
.vtime{font-size:11.5px;color:var(--smoke);font-variant-numeric:tabular-nums;white-space:nowrap;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}

@media (max-width:620px){
  .reel-title{font-size:22px}
  .bigplay{width:62px;height:62px;font-size:21px}
}


/* Fullscreen: the film is 1280x664, which is wider than a 16:9 screen and
   taller than an ultrawide one. Let it letterbox on black and stay centered
   instead of stretching to whatever shape the display happens to be. */
.plate:fullscreen{display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;border:0;border-radius:0;background:#000}
.plate:fullscreen video{width:100%;height:100%;object-fit:contain}
.plate:fullscreen .curtain{background-size:contain;background-repeat:no-repeat}
.plate:-webkit-full-screen{display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;background:#000}
.plate:-webkit-full-screen video{width:100%;height:100%;object-fit:contain}
