/* ============================================================================
   Lockedin - minimal monochrome + one red. Paper primary, Archivo, 4px radius,
   Lucide icons, per-user pastel names. See REDESIGN-HANDOVER.md.
   ========================================================================== */
:root {
  --bg: #1F1F1F;        /* page / screen background */
  --card: #2A2A2A;      /* video wells, inputs on dark, thumbnails */
  --card2: #2E2E2E;     /* raised surfaces: secondary buttons, chips */
  --line: #3A3A3A;      /* section dividers, borders */
  --line2: #2E2E2E;     /* hairline row rules inside a list */
  --text: #F5F1EA;      /* primary text (warm white) */
  --muted: #8A8A8A;     /* labels, secondary text */
  --faint: #6E6E6E;     /* timestamps, meta */
  --dim: #5A5A5A;       /* placeholder text, disabled icons */
  --paper: #F2EDE4;     /* PRIMARY: buttons, active chips, scrubber fill */
  --on-paper: #1F1F1F;  /* text/icons on --paper */
  --live: #E0554F;      /* live dot, LIVE / RECORDING, End session */
  --live-bd: #4A3230;   /* End session button border */
  --radius: 4px;
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; background: var(--bg); color: var(--text);
  font-family: 'Archivo', system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased; }
body { padding-bottom: env(safe-area-inset-bottom); }
#app { max-width: 520px; margin: 0 auto; min-height: 100vh; }
.loading { text-align: center; padding: 40vh 0; color: var(--muted); }
svg.lc { display: block; flex: 0 0 auto; }

/* type helpers */
.micro { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.seclabel { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

/* top bar */
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 52px 20px 10px; }
.topbar .wm { height: 20px; width: auto; display: block; }
.topbar .who { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.topbar .who .nm { color: var(--text); }
.topbar .who .bell { width: 44px; height: 44px; margin: -12px -12px -12px 0; display: flex; align-items: center;
  justify-content: center; background: none; border: 0; color: var(--muted); cursor: pointer; }
.topbar .who .bell:active { color: var(--text); }

/* per-user pastel dot */
.udot { width: 8px; height: 8px; border-radius: 999px; flex: 0 0 auto; }

/* live dot (red, pulsing) */
.livedot { width: 8px; height: 8px; border-radius: 999px; background: var(--live); flex: 0 0 auto;
  animation: livepulse 1.6s ease-in-out infinite; }
@keyframes livepulse { 0%,100% { opacity: 1 } 50% { opacity: .25 } }

/* sticky background-upload progress bar */
.uploadbar { position: sticky; top: 0; z-index: 50; margin: 0 20px 8px; border-radius: var(--radius);
  overflow: hidden; background: var(--card); border: 1px solid var(--line); }
.uploadbar.hidden { display: none; }
.uploadbar .ub-fill { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--paper); transition: width .3s ease; }
.uploadbar .ub-text { position: relative; padding: 9px 12px; font-size: 12px; font-weight: 600; color: var(--text); mix-blend-mode: difference; }
.uploadbar.error .ub-fill { background: var(--live); }

.tabwrap { max-width: 520px; margin: 0 auto; }
.screen { padding: 8px 20px 90px; }

/* buttons */
button { font: inherit; cursor: pointer; border: none; border-radius: var(--radius); }
.btn { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  min-height: 56px; padding: 0 18px; font-size: 15px; font-weight: 700; letter-spacing: -.02em;
  background: var(--paper); color: var(--on-paper); }
.btn.center { justify-content: center; }
.btn:active { opacity: .85; }
.btn:disabled { opacity: .4; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn.fill2 { background: var(--card2); color: var(--text); border: 1px solid var(--line); }
.btn.danger { background: transparent; color: var(--live); border: 1px solid var(--live-bd); justify-content: center; }
.btn.hero { min-height: 78px; padding: 0 22px; }
.btn.hero span { font-size: 32px; font-weight: 800; letter-spacing: -.05em; }
.link { background: none; color: var(--muted); padding: 8px; width: 100%; font-size: 13px; font-weight: 600; }
.link:active { color: var(--text); }

/* generic icon button (44x44, glyph via currentColor) */
.iconbtn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; border: 0; color: var(--text); }
.iconbtn:active { color: var(--muted); }

/* inputs */
input[type=text], input[type=number] { width: 100%; height: 52px; padding: 0 14px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--card); color: var(--text); font: inherit; font-size: 16px; letter-spacing: -.01em; }
input::placeholder { color: var(--dim); }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 14px; }
.empty { color: var(--muted); text-align: center; padding: 40px 0; font-size: 13px; }
.home-divider { height: 1px; background: var(--line); margin: 20px 0; }
.feed-date { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }

/* ================================ NAME PICKER =========================== */
.center-screen { min-height: 100dvh; display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; padding: 34px 24px; gap: 8px; }
.center-screen .wm { width: 216px; max-width: 74vw; height: auto; margin-bottom: 6px; }
.center-screen p { color: var(--muted); text-align: left; margin: 0 0 18px; font-size: 15px; letter-spacing: -.01em; }
.picklist { width: 100%; }
.pick-btn { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 60px; padding: 0 2px;
  background: none; border: 0; border-top: 1px solid var(--line2); color: var(--text);
  font-size: 17px; font-weight: 700; letter-spacing: -.03em; text-align: left; }
.pick-btn .nm { flex: 1; }
.pick-btn .chev { color: var(--faint); }
.pick-btn .plive { display: flex; align-items: center; gap: 6px; color: var(--live); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.pick-add { display: flex; gap: 10px; width: 100%; margin-top: 16px; }
.pick-add input { flex: 1; }
.pick-add .addbtn { width: 52px; height: 52px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  background: var(--paper); color: var(--on-paper); border: 0; border-radius: var(--radius); }

/* ============================ LOCK-IN SETUP (idle) ====================== */
.focus-setup { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.focus-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.focus-custom { display: flex; gap: 10px; }
.focus-custom.hidden { display: none; }
.focus-custom label, .focus-num { flex: 1; display: flex; align-items: center; justify-content: space-between;
  height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.focus-custom label { flex-direction: row; color: var(--muted); font-size: 13px; }
.focus-custom .valu { display: flex; align-items: baseline; gap: 5px; }
.focus-custom input, .focus-num input { width: 56px; height: auto; padding: 0; border: 0; background: none; text-align: right; font-size: 18px; font-weight: 700; }
.focus-num { color: var(--muted); }
.focus-num span, .focus-custom label .u { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.focus-hint { font-size: 12px; color: var(--muted); line-height: 1.5; }
.focus-modenote { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.focus-modenote svg { width: 15px; height: 15px; }

/* preset chips */
.chip { background: transparent; color: var(--muted); border: 1px solid var(--line);
  padding: 9px 14px; font-size: 13px; font-weight: 600; letter-spacing: -.01em; border-radius: 999px; }
.chip.on { background: var(--paper); color: var(--on-paper); border-color: var(--paper); }

/* pomodoro settings collapse */
.focus-collapse { display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: 0; padding: 6px 0; color: var(--muted);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-align: left; }
.focus-collapse .chev { transition: transform .2s ease; }
.focus-collapse.open .chev { transform: rotate(180deg); }
.focus-pombody { display: flex; flex-direction: column; gap: 12px; padding: 4px 0 0; }
.focus-pombody.hidden { display: none; }

/* social proof above start */
.focus-proof { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); font-weight: 600; }

/* ======================= "Locked in right now" cards ==================== */
.focus-live { margin-top: 28px; }
.focus-liverow-head { display: flex; align-items: center; justify-content: space-between; margin: 0 0 12px; }
.focus-liverow-head .lbl { display: flex; align-items: center; gap: 8px; }
.focus-liverow-head .cnt { color: var(--muted); font-size: 12px; font-weight: 600; }
.focus-livegoal { color: var(--muted); font-size: 12px; letter-spacing: -.01em; }
.focus-livegrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 380px) { .focus-livegrid { grid-template-columns: 1fr; } }
.focus-livecard { background: none; border: 0; border-radius: 0; overflow: visible; cursor: pointer; }
.focus-prevbox { position: relative; width: 100%; aspect-ratio: 16/10; background: var(--card);
  border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.focus-prevbox video { width: 100%; height: 100%; object-fit: cover; }
.focus-livecard:not(.has-stream) .focus-prevbox::after { content: 'Connecting'; color: var(--dim); font-size: 11px; position: absolute; }
.focus-livecard.has-stream .focus-prevbox::after { content: none; }
.live-badge { position: absolute; top: 8px; left: 8px; display: flex; align-items: center; gap: 5px;
  background: rgba(31,31,31,.7); color: var(--live); font-size: 10px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 7px; border-radius: var(--radius); backdrop-filter: blur(3px); }
.live-badge .livedot { width: 6px; height: 6px; }
.prev-time { position: absolute; bottom: 8px; right: 8px; background: rgba(31,31,31,.7); color: var(--text);
  font-size: 11px; font-weight: 600; padding: 3px 6px; border-radius: var(--radius); font-variant-numeric: tabular-nums; }
.focus-livecap { display: flex; align-items: baseline; gap: 6px; padding: 8px 2px 0; flex-wrap: wrap; }
.focus-livecap b { font-size: 14px; font-weight: 700; letter-spacing: -.02em; }
/* compact row for cards past the preview cap */
.focus-livecard.no-preview { display: flex; align-items: center; gap: 12px; height: 56px; cursor: pointer; }
.focus-livecard.no-preview .focus-prevbox { display: none; }
.focus-livecard.no-preview::before { content: ''; width: 8px; height: 8px; border-radius: 999px; background: var(--live);
  flex: 0 0 auto; animation: livepulse 1.6s ease-in-out infinite; }

/* ============================ Focus history ============================= */
.focus-hgroup { margin-bottom: 18px; }
.focus-hrow { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line2); }
.focus-hrow.has-vod { cursor: pointer; }
.focus-hrow.novod { color: var(--muted); }
.focus-thumb { position: relative; flex: 0 0 auto; width: 76px; height: 48px; border-radius: var(--radius);
  overflow: hidden; background: var(--card); display: flex; align-items: center; justify-content: center; }
.focus-thumb video { width: 100%; height: 100%; object-fit: cover; }
.focus-thumb::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.focus-thumbplay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; display: flex; }
.focus-thumb.clock { border: 1px solid var(--line); background: none; color: var(--dim); }
.focus-thumb.clock::before { content: none; }
.focus-hbody { flex: 1; min-width: 0; }
.focus-hmain { display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.focus-hgoal { font-size: 14px; font-weight: 600; letter-spacing: -.02em; }
.focus-hmeta { display: flex; gap: 10px; align-items: center; margin-top: 3px; font-size: 11px; color: var(--faint); font-weight: 600; letter-spacing: .02em; }
.focus-menu { flex: 0 0 auto; width: 32px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; color: var(--faint); }
.focus-menu:active { color: var(--text); }

/* ==================== LIVE SESSION (streamer) =========================== */
.focus-live-wrap { display: flex; flex-direction: column; gap: 16px; padding-top: 6px; }
.focus-live-hd { display: flex; align-items: center; justify-content: space-between; }
.focus-live-hd .l { display: flex; align-items: center; gap: 7px; color: var(--live); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.focus-live-hd .r { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 600; }
.focus-live-hd .r svg { width: 15px; height: 15px; }
.focus-clockwrap { text-align: center; }
.focus-phase { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.focus-clock { font-size: 76px; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: -.06em; margin-top: 4px; }
.focus-goal { font-size: 14px; color: var(--muted); font-weight: 600; letter-spacing: -.01em; margin-top: 6px; }
.focus-videobox { position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; background: var(--card); min-height: 160px; }
.focus-videobox video { width: 100%; height: auto; max-height: 46vh; object-fit: contain; display: block; margin: 0 auto; }
.recdot { position: absolute; top: 12px; left: 12px; display: flex; align-items: center; gap: 6px;
  background: rgba(31,31,31,.7); color: var(--live); font-size: 10px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 8px; border-radius: var(--radius); backdrop-filter: blur(3px); }
.recdot .livedot { width: 6px; height: 6px; }
.focus-actions { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.focus-pairrow { display: flex; gap: 8px; width: 100%; }
.focus-pairrow .btn { flex: 1; min-height: 52px; }

/* break state: header block inverts to Paper (no green) */
.focus-live-wrap.is-break .focus-clockwrap { background: var(--paper); color: var(--on-paper);
  border-radius: var(--radius); padding: 18px 12px; }
.focus-live-wrap.is-break .focus-phase { color: #8A5A55; }
.focus-live-wrap.is-break .focus-clock { color: var(--on-paper); }
.focus-live-wrap.is-break .focus-goal { color: rgba(31,31,31,.6); }

/* activity log (break panel + VOD timeline) */
.focus-breakhead { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 8px; }
.focus-breakhead .seclabel { color: var(--muted); }
.focus-chat { width: 100%; }
.focus-chat-empty { padding: 14px 2px; color: var(--dim); font-size: 12px; }
.focus-log { max-height: 240px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.focus-logrow { display: flex; gap: 10px; align-items: baseline; padding: 8px 0; border-top: 1px solid var(--line2); font-size: 13px; line-height: 1.4; letter-spacing: -.01em; }
.focus-logrow.seekable { cursor: pointer; }
.focus-logtime { flex: 0 0 auto; color: var(--faint); font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; }
.focus-logrow.seekable .focus-logtime { color: var(--paper); }
.focus-logrow.evt { color: var(--faint); font-size: 12px; }
.focus-logrow.evt .focus-logtime { color: var(--faint); font-weight: 600; }
.focus-logrow.msg b { font-weight: 700; letter-spacing: -.01em; }

/* composer */
.wform-el, .focus-cmt { display: flex; gap: 8px; margin-top: 10px; }
.wform-el input { flex: 1; height: 46px; font-size: 16px; }
.wform-el button, .focus-cmt button { width: 46px; height: 46px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  background: var(--paper); color: var(--on-paper); border-radius: var(--radius); }
.wform-el.send2 button { background: var(--card2); color: var(--text); border: 1px solid var(--line); }

/* ==================== WATCH (viewing a friend) ========================== */
.focus-watch-head { display: flex; align-items: center; gap: 10px; padding: 4px 0 12px; }
.focus-watch-head .arrow { width: 44px; height: 44px; margin-left: -12px; display: flex; align-items: center; justify-content: center; color: var(--text); background: none; }
.focus-watch-head .who { flex: 1; min-width: 0; }
.focus-watch-head .who b { font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.focus-watch-head .vcount { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 12px; font-weight: 600; }
.focus-watch-head .vcount svg { width: 14px; height: 14px; }
.focus-watch-box { position: relative; display: flex; align-items: center; justify-content: center; min-height: 200px;
  background: var(--card); width: calc(100% + 40px); margin: 0 -20px; }   /* full-bleed */
.focus-watch-box #wvideo { width: 100%; height: auto; max-height: 62vh; object-fit: contain; background: var(--card); display: block; }
.focus-watch-ph { color: var(--muted); font-size: 12px; text-align: center; padding: 20px; line-height: 1.5; }

/* resizable facecam: bottom-right, sitting just above the fullscreen button */
.wpipbox { position: absolute; bottom: 60px; right: 8px; width: 104px; z-index: 3; }
.wpipbox video { width: 100%; height: auto; max-height: none; aspect-ratio: 3/4; object-fit: cover; display: block; border-radius: var(--radius); background: #000; }
.wpip-handle { position: absolute; top: -8px; left: -8px; width: 22px; height: 22px; border-radius: var(--radius);
  background: var(--paper); color: var(--on-paper); display: flex; align-items: center; justify-content: center;
  cursor: nwse-resize; touch-action: none; user-select: none; }
.wpip-handle svg { width: 12px; height: 12px; }
.focus-watch-box.screen-hidden #wvideo { display: none !important; }
.focus-watch-box.screen-hidden #wpipbox { position: static !important; width: 100% !important; }
.focus-watch-box.screen-hidden #wpipbox video { aspect-ratio: auto; }
.focus-watch-box.screen-hidden #wpiphandle { display: none; }

/* overlay control buttons (square, 4px, line border on the dark plate) */
.wbtn { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(31,31,31,.72); color: var(--text);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.wbtn:active { background: rgba(31,31,31,.9); }
.wctrls-left { position: absolute; top: 8px; left: 8px; z-index: 6; }
.wctrls-left .wbtn svg { transform: translateX(1px); }   /* optical-centre the speaker glyph */
.wctrls-right { position: absolute; bottom: 8px; right: 8px; display: flex; gap: 6px; z-index: 8; }
#wstage.chat-open .wctrls-right { top: 8px; bottom: auto; }
#wchat { display: none; }

/* timer plate: red dot + LOCKED IN + countdown */
.wtimer { position: absolute; top: 8px; right: 8px; z-index: 6; display: flex; align-items: center; gap: 6px;
  background: rgba(31,31,31,.82); color: var(--text); font-weight: 700; font-size: 11px; letter-spacing: .06em;
  padding: 6px 9px; border-radius: var(--radius); font-variant-numeric: tabular-nums; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.wtimer .livedot { width: 6px; height: 6px; }
.wtimer .cd { color: var(--text); letter-spacing: 0; }

/* chat below the video (windowed) */
#wchatbelow { margin-top: 12px; }
#wchatbelow .focus-breakhead .brk { color: var(--muted); font-size: 12px; font-weight: 600; }
.wform-el.kb-float { padding: 8px !important; background: rgba(31,31,31,.96); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* ============================== FULLSCREEN ============================== */
#wstage.fs { background: #000; }
.fs-fake { position: fixed !important; top: 0 !important; left: 0 !important; z-index: 2000 !important;
  width: 100vw !important; height: 100vh !important; height: 100dvh !important; margin: 0 !important; border-radius: 0 !important; }

@media (orientation: portrait) {
  #wstage.fs { display: flex !important; flex-direction: column !important; align-items: stretch; height: 100dvh !important; }
  #wstage.fs .wctrls-left, #wstage.fs .wctrls-right { top: 8px !important; bottom: auto !important; }
  #wstage.fs .wctrls-left .wbtn, #wstage.fs .wctrls-right .wbtn { background: none; border: 0; }
  #wstage.fs .wtimer { left: 50% !important; right: auto !important; transform: translateX(-50%); }
  #wstage.fs #wpipbox { position: static !important; align-self: center; width: 150px !important; margin: 44px auto 6px !important; }
  #wstage.fs #wpiphandle { display: none; }
  #wstage.fs #wvideo { position: static !important; width: 100% !important; height: auto !important; max-height: 36dvh !important; object-fit: contain; }
  #wstage.fs .wchatwrap { position: static !important; transform: none !important; flex: 1; display: flex; flex-direction: column; min-height: 0; justify-content: flex-end; padding: 8px 16px; }
}

@media (orientation: landscape) {
  #wstage.fs { display: block !important; }
  #wstage.fs #wvideo { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; max-height: 100% !important; object-fit: contain; }
  #wstage.fs #wpipbox { position: absolute !important; bottom: 10px; left: 10px; width: 110px !important; }
  #wstage.fs #wchat { display: flex; }
  #wstage.fs .wctrls-right { bottom: 8px !important; top: auto !important; right: 8px !important; }
  #wstage.fs.chat-open .wctrls-right { right: 306px !important; bottom: 8px !important; top: auto !important; }
  #wstage.fs .wchatwrap { position: absolute !important; top: 0; right: 0; bottom: 0; width: 290px; z-index: 7;
    background: rgba(31,31,31,.94); border-left: 1px solid var(--line);
    transform: translateX(101%); transition: transform .25s ease; display: flex; flex-direction: column; padding: 12px; }
  #wstage.fs .wchatwrap.open { transform: translateX(0); }
}

/* chat inside fullscreen: transparent log, light text */
#wstage.fs .wchatwrap .focus-log { flex: 1; max-height: none !important; }
#wstage.fs .wchatwrap .focus-logrow { border-top-color: rgba(255,255,255,.08); }
#wstage.fs .wchatwrap .wform-el input { background: rgba(0,0,0,.4); border-color: rgba(255,255,255,.15); color: #fff; }

/* ============================== VOD PLAYER ============================== */
.focus-vodhead { padding: 4px 0 10px; }
.focus-vodhead .goal { font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.focus-vodmeta { color: var(--faint); font-size: 11px; font-weight: 600; letter-spacing: .02em; margin-top: 4px; }
.focus-vodplayer { width: calc(100% + 40px); margin: 0 -20px; max-height: 60vh; background: #000; display: block; }
.focus-vodwrap { margin-top: 4px; }
.focus-vodlog { margin-top: 14px; max-height: none; }
