/* Daviey TV — 10-foot client styles.
 * Tokens: bg #15181D · accent #F28C28 · Inter (vendored TTF) · radius 10px ·
 * 8px spacing system · text #EEF1F6 / #8A93A6 ·
 * focus: 3px #F28C28 @40% ring + 0 0 24px glow, 120ms ease-out.
 * 1080p-safe: generous overscan padding on every screen edge.
 */

@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-style: normal;
  src: url('vendor/Inter-Regular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-weight: 500;
  font-style: normal;
  src: url('vendor/Inter-Medium.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-weight: 600;
  font-style: normal;
  src: url('vendor/Inter-SemiBold.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-weight: 700;
  font-style: normal;
  src: url('vendor/Inter-Bold.ttf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #15181D;
  --bg-raised: #1C2027;
  --bg-inset: #101318;
  --focus: #F5A623;
  --accent: #F28C28;
  --red: #E5484D;
  --ring: rgba(242, 140, 40, 0.40);         /* focus ring per tokens */
  --ring-strong: rgba(242, 140, 40, 0.75);  /* large list rows */
  --glow: 0 0 24px rgba(242, 140, 40, 0.30);
  --text: #EEF1F6;
  --text-dim: #8A93A6;
  --text-faint: #5A616B;
  --edge: #2A2F38;
  --radius: 10px;
  --safe-x: 84px;   /* ~4.4% of 1920 — inside action-safe */
  --safe-y: 48px;   /* ~4.4% of 1080 */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  /* ambient base: very dark charcoal + faint radial washes, no noise */
  background:
    radial-gradient(1100px 700px at 18% -12%, rgba(242, 140, 40, 0.05), transparent 60%),
    radial-gradient(1400px 900px at 85% 112%, rgba(96, 125, 169, 0.05), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.hidden { display: none !important; }

/* ---------------- screens ---------------- */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: var(--safe-y) var(--safe-x);
}

/* ---------------- masthead ---------------- */
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  flex: none;
}
.masthead-sec { margin-bottom: 20px; }
.masthead-left { display: flex; align-items: center; gap: 24px; min-width: 0; }
.brand { display: flex; align-items: center; gap: 16px; }
.brand-sm { opacity: 0.75; }
.brand-sm .brand-mark { width: 34px; height: 34px; font-size: 19px; border-radius: 8px; }
.brand-sm .brand-name { font-size: 17px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--focus), var(--accent));
  color: #15181D; font-weight: 700; font-size: 25px;
  display: flex; align-items: center; justify-content: center;
}
.brand-name { font-weight: 700; font-size: 24px; letter-spacing: 0.14em; }
.sec-title {
  font-size: 30px; font-weight: 700; letter-spacing: 0.10em;
  color: var(--text); white-space: nowrap;
}
.clock {
  font-size: 28px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-dim);
}

/* ---------------- menu (home) ---------------- */
.screen-menu { justify-content: flex-start; }
.menu-ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.menu-ambient .glow { position: absolute; border-radius: 50%; }
.glow-a {
  width: 980px; height: 640px; left: -200px; top: -240px;
  background: radial-gradient(closest-side, rgba(242, 140, 40, 0.11), transparent);
  filter: blur(40px);
}
.glow-b {
  width: 1200px; height: 760px; right: -280px; bottom: -300px;
  background: radial-gradient(closest-side, rgba(86, 120, 182, 0.10), transparent);
  filter: blur(40px);
}
.menu-body {
  position: relative;
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 80px;
}
.menu-brand { display: flex; align-items: center; gap: 32px; }
.menu-mark {
  width: 112px; height: 112px; border-radius: 26px;
  background: linear-gradient(135deg, var(--focus), var(--accent));
  color: #15181D; font-weight: 700; font-size: 62px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 64px rgba(242, 140, 40, 0.25);
}
.menu-word {
  font-size: 84px; font-weight: 700; letter-spacing: 0.14em;
  line-height: 1.05; white-space: nowrap;
}
.menu-word em {
  font-style: normal;
  background: linear-gradient(135deg, var(--focus), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.menu-tag {
  margin-top: 14px;
  font-size: 20px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text-dim);
}
.menu-nav { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.menu-card {
  width: 344px; padding: 44px 32px 36px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
  font: inherit; color: inherit; cursor: pointer;
  background: rgba(28, 32, 39, 0.88);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  transition: transform 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out, background 0.12s ease-out;
}
.menu-card.focused {
  transform: scale(1.04);
  border-color: var(--ring);
  box-shadow: var(--glow), 0 24px 48px rgba(0, 0, 0, 0.45);
  background: #232833;
}
.mc-icon {
  width: 96px; height: 96px;
  color: var(--text-dim);
  margin-bottom: 20px;
  transition: color 0.12s ease-out, transform 0.12s ease-out;
}
.menu-card.focused .mc-icon { color: var(--accent); transform: translateY(-4px); }
.mc-label {
  font-size: 30px; font-weight: 600;
  transition: transform 0.12s ease-out, color 0.12s ease-out;
}
.menu-card.focused .mc-label { transform: translateY(-4px); color: #FFFFFF; }
.mc-sub {
  font-size: 19px; color: var(--text-faint);
  transition: transform 0.12s ease-out;
}
.menu-card.focused .mc-sub { transform: translateY(-4px); }

/* menu-body spacing when the continue-watching rail is present */
.menu-body.has-rail { gap: 48px; }
.menu-body.has-rail .menu-brand { transform: scale(0.82); transform-origin: center bottom; }

/* ---------------- continue-watching rail ---------------- */
.menu-rail {
  width: 100%;
  max-width: 1560px;
  display: flex; flex-direction: column;
}
.rail-head {
  flex: none;
  font-size: 19px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.rail-cards {
  display: flex; gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;              /* focus ring breathing room when scrolling */
}
.rail-cards::-webkit-scrollbar { display: none; }
.rail-card {
  position: relative;
  flex: none; width: 320px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px; text-align: left;
  font: inherit; color: inherit; cursor: pointer;
  background: rgba(28, 32, 39, 0.88);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  padding: 18px 22px 30px;
  transition: transform 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out, background 0.12s ease-out;
}
.rail-card.focused {
  transform: translateY(-4px);
  border-color: var(--ring);
  box-shadow: var(--glow), 0 16px 36px rgba(0, 0, 0, 0.4);
  background: #232833;
}
.rc-ch {
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}
.rc-title {
  max-width: 100%;
  font-size: 23px; font-weight: 600; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rc-when {
  font-size: 16px; color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}
.rc-bar {
  position: absolute; left: 22px; right: 22px; bottom: 14px;
  height: 4px; border-radius: 2px;
  background: rgba(238, 241, 246, 0.14);
  overflow: hidden;
}
.rc-fill {
  display: block; height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* ---------------- profile picker ---------------- */
.picker-body { gap: 72px; }
.picker-nav { display: flex; gap: 32px; justify-content: center; }
.profile-card {
  width: 264px; padding: 40px 24px 32px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
  font: inherit; color: inherit; cursor: pointer;
  background: rgba(28, 32, 39, 0.88);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  transition: transform 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out, background 0.12s ease-out;
}
.profile-card.focused {
  transform: scale(1.05);
  border-color: var(--ring);
  box-shadow: var(--glow), 0 24px 48px rgba(0, 0, 0, 0.45);
  background: #232833;
}
.pc-avatar {
  width: 128px; height: 128px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-inset);
  border: 3px solid var(--edge);
  color: var(--text-dim);
  font-size: 46px; font-weight: 700;
  margin-bottom: 18px;
  transition: border-color 0.12s ease-out, color 0.12s ease-out,
              transform 0.12s ease-out;
}
.profile-card.focused .pc-avatar {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px);
}
.pc-name {
  font-size: 27px; font-weight: 600;
  max-width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: transform 0.12s ease-out, color 0.12s ease-out;
}
.profile-card.focused .pc-name { transform: translateY(-4px); color: #FFFFFF; }

/* ---------------- on-screen keyboard (new profile) ---------------- */
.kb-body {
  position: relative;
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 56px;
}
.kb-preview { text-align: center; }
.kb-label {
  font-size: 19px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.kb-name {
  display: inline-block;
  min-width: 520px;
  padding: 10px 28px;
  font-size: 44px; font-weight: 600;
  background: var(--bg-inset);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  min-height: 76px; line-height: 1.2;
}
.kb-name::after {           /* caret */
  content: '';
  display: inline-block;
  width: 3px; height: 0.95em;
  margin-left: 6px;
  vertical-align: text-bottom;
  background: var(--accent);
  animation: kb-caret 1.1s steps(1) infinite;
}
@keyframes kb-caret { 50% { opacity: 0; } }
.kb-preview.shake { animation: kb-shake 0.4s ease-out; }
@keyframes kb-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-12px); }
  40% { transform: translateX(12px); }
  60% { transform: translateX(-8px); }
  80% { transform: translateX(8px); }
}
.kb-grid {
  display: grid;
  grid-template-columns: repeat(10, 108px);
  gap: 14px;
}
.kb-key {
  height: 78px;
  display: flex; align-items: center; justify-content: center;
  font: inherit; font-size: 30px; font-weight: 600;
  color: var(--text);
  background: var(--bg-raised);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out, background 0.12s ease-out,
              color 0.12s ease-out;
}
.kb-key.focused {
  transform: translateY(-3px);
  border-color: var(--ring);
  box-shadow: var(--glow);
  background: #2A303C;
  color: #FFFFFF;
}
.kb-key.wide {
  grid-column: span 2;
  font-size: 22px;
  letter-spacing: 0.10em;
}

/* ---------------- house PIN pad ---------------- */
.pin-body {
  position: relative;
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 48px;
}
.pin-preview { text-align: center; }
.pin-preview.shake { animation: kb-shake 0.4s ease-out; }
.pin-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  min-width: 400px;
  min-height: 76px;
  padding: 10px 34px;
  background: var(--bg-inset);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
}
.pin-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--text);
}
.pin-dot.open {
  background: transparent;
  border: 3px solid var(--edge);
}
.pin-dot.cursor {
  background: transparent;
  border: 3px solid var(--accent);
  animation: kb-caret 1.1s steps(1) infinite;
}
.pin-grid {
  display: grid;
  grid-template-columns: repeat(3, 108px);
  gap: 14px;
}

/* ---------------- enroll-at-home notice ---------------- */
/* Same card language as the PIN dots box — a calm explanation card where
   the pad would sit. Inert screen: no focusables, no hover states. */
.enroll-preview .enroll-line {
  max-width: 680px;
  padding: 30px 42px;
  background: var(--bg-inset);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  font-size: 21px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ---------------- grid layout ---------------- */
.layout {
  flex: 1; min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(0, 1fr);
  gap: 52px;
}
body.no-epg .layout { grid-template-columns: minmax(0, 1fr); }
body.no-epg .epg-pane { display: none; }

/* ---------------- channel list ---------------- */
.channel-list {
  list-style: none;
  overflow-y: auto;
  scrollbar-width: none;
  min-height: 0;
}
.channel-list::-webkit-scrollbar { display: none; }

.row {
  display: flex; align-items: center; gap: 22px;
  height: 70px; padding: 0 26px;
  border-radius: 12px;
  border: 3px solid transparent;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.row .num {
  flex: none; width: 80px; text-align: right;
  font-size: 24px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-dim);
}
.row .logo {
  flex: none; height: 38px; max-width: 138px;
  object-fit: contain; display: block;
}
.row .name {
  flex: 1; min-width: 0;
  font-size: 27px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.row .tag {
  flex: none;
  font-size: 15px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--text-faint);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 3px 10px;
}
.row.focused {
  background: rgba(242, 140, 40, 0.10);
  border-color: var(--ring-strong);       /* focus ring per tokens */
  box-shadow: var(--glow);
}
.row.focused .num { color: var(--focus); }
.row.focused .name { color: #FFFFFF; }
.row.status { color: var(--text-dim); font-size: 24px; }
.row.status.error { color: var(--accent); }

/* ---------------- EPG pane ---------------- */
.epg-pane { display: flex; flex-direction: column; min-width: 0; }
.epg-channel-name {
  font-size: 34px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 18px;
}
.epg-label {
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 8px;
}
.now-card {
  background: var(--bg-raised);
  border-left: 6px solid var(--focus);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.epg-title { font-size: 32px; font-weight: 600; line-height: 1.2; margin-bottom: 8px; }
.epg-subtitle { font-size: 22px; color: var(--text-dim); margin-bottom: 14px; }
.epg-summary {
  font-size: 20px; line-height: 1.45; color: var(--text-dim);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.progressbar {
  height: 8px; border-radius: 4px;
  background: var(--edge);
  overflow: hidden;
  margin: 18px 0 10px;
}
.progress {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--focus), var(--accent));
  border-radius: 4px;
}
.epg-times { font-size: 19px; color: var(--text-faint); font-variant-numeric: tabular-nums; }
.next-card {
  background: var(--bg-inset);
  border-radius: 16px;
  padding: 22px 28px;
}
.next-card .epg-label { color: var(--text-faint); }
.next-title { font-size: 25px; font-weight: 600; }

/* ---------------- hint bar ---------------- */
.hint-bar {
  flex: none;
  display: flex; gap: 32px; align-items: center;
  margin-top: 22px;
  color: var(--text-faint);
  font-size: 19px;
}
.key {
  display: inline-block;
  border: 1px solid #333944; border-bottom-width: 3px;
  border-radius: 6px;
  padding: 1px 9px; margin: 0 2px;
  color: var(--text-dim);
  font-size: 17px;
}

/* ---------------- guide ---------------- */
.guide-wrap {
  flex: 1; min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: 40px;
}
.guide-scroll {
  overflow: auto;
  scrollbar-width: none;
  min-height: 0;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: rgba(16, 19, 24, 0.55);
}
.guide-scroll::-webkit-scrollbar { display: none; }
.guide-inner { position: relative; }

.guide-header {
  position: sticky; top: 0; z-index: 5;
  display: flex; height: 56px;
  background: #191D24;
  border-bottom: 1px solid var(--edge);
}
.guide-corner {
  position: sticky; left: 0; z-index: 6;
  flex: none; width: 300px;
  display: flex; align-items: center;
  padding: 0 18px;
  font-size: 16px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-right: 1px solid var(--edge);
  background: #191D24;
  white-space: nowrap;
}
.guide-ticks { position: relative; flex: none; }
.gtick {
  position: absolute; top: 0; bottom: 0;
  padding: 9px 0 0 10px;
  font-size: 19px; font-weight: 600;
  color: var(--text-dim);
  border-left: 1px solid rgba(42, 47, 56, 0.9);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.gtick.half { color: var(--text-faint); font-weight: 500; font-size: 15px; }
.nowpill {
  position: absolute; top: 14px;
  transform: translateX(-50%);
  background: var(--red); color: #FFFFFF;
  font-size: 15px; font-weight: 700;
  border-radius: 6px; padding: 2px 9px;
  box-shadow: 0 0 14px rgba(229, 72, 77, 0.5);
  z-index: 2;
}

.grow {
  display: flex; height: 68px;
  border-bottom: 1px solid rgba(42, 47, 56, 0.55);
  scroll-margin-top: 64px;
}
.grow.rowfocus { background: rgba(238, 241, 246, 0.025); }
.gch {
  position: sticky; left: 0; z-index: 4;
  flex: none; width: 300px; min-width: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 0 18px;
  background: #15181D;
  border-right: 1px solid var(--edge);
}
.grow.rowfocus .gch-name { color: #FFFFFF; }
.gch-num {
  flex: none; width: 56px; text-align: right;
  font-size: 19px; font-weight: 600;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.gch-name {
  font-size: 21px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gcells {
  position: relative; flex: none;
  /* half-hour / hour gridlines — 6px per minute ⇒ 180px / 360px */
  background-image:
    linear-gradient(90deg, rgba(238, 241, 246, 0.065) 0 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 241, 246, 0.026) 0 1px, transparent 1px);
  background-size: 360px 100%, 180px 100%;
}
.gcell {
  position: absolute; top: 8px; bottom: 8px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--bg-raised);
  border: 3px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out, opacity 0.2s ease-out;
}
.gcell .t {
  font-size: 20px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
}
.gcell.past { opacity: 0.38; }
.gcell.onair { background: #272C36; }
.gcell.onair .t { color: #FFFFFF; }
.gcell.focused {
  border-color: var(--ring);
  box-shadow: var(--glow);
  background: #313745;
  z-index: 3;
}
.gcell.focused.past { opacity: 0.85; }
.gcell.focused .t { color: #FFFFFF; }
.cbadge {
  flex: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  border-radius: 5px; padding: 2px 7px;
  line-height: 1.3;
}
.cbadge.rec { background: var(--red); color: #FFFFFF; }
.cbadge.rec.live { animation: recpulse 1.6s ease-in-out infinite; }
.cbadge.bell { border: 1.5px solid rgba(242, 140, 40, 0.55); color: var(--accent); }
@keyframes recpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.nowline {
  position: absolute; top: 56px; bottom: 0;
  width: 2px; margin-left: -1px;
  background: var(--red);
  opacity: 0.85;
  box-shadow: 0 0 10px rgba(229, 72, 77, 0.55);
  z-index: 2;
  pointer-events: none;
}
.guide-msg {
  padding: 48px 32px 48px 318px;
  color: var(--text-dim);
  font-size: 24px;
}

/* guide details + actions */
.guide-side { display: flex; flex-direction: column; min-height: 0; gap: 24px; }
.g-details {
  flex: 1; min-height: 0; overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 28px;
}
.gd-empty { color: var(--text-dim); font-size: 22px; line-height: 1.5; }
.gd-ch {
  font-size: 17px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.gd-title { font-size: 30px; font-weight: 600; line-height: 1.25; margin-bottom: 10px; }
.gd-time {
  font-size: 20px; color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.gd-se {
  display: inline-block;
  font-size: 15px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.gd-desc {
  font-size: 19px; line-height: 1.5; color: var(--text-dim);
  display: -webkit-box; -webkit-line-clamp: 9; -webkit-box-orient: vertical;
  overflow: hidden;
}
.g-actions { display: flex; flex-direction: column; gap: 12px; }
.g-actions.idle .gact { opacity: 0.72; }
.gact {
  flex: none; height: 64px;
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px;
  font: inherit; font-size: 23px; font-weight: 600;
  color: var(--text); text-align: left;
  background: var(--bg-raised);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out, background 0.12s ease-out, opacity 0.12s ease-out;
}
.gact svg { flex: none; width: 26px; height: 26px; }
.gact.focused {
  border-color: var(--ring);
  box-shadow: var(--glow);
  background: #2A303C;
  transform: translateX(4px);
}
.gact.static {
  cursor: default;
  color: var(--accent);
  border-color: rgba(242, 140, 40, 0.35);
}
.gact.static svg { color: var(--accent); }

/* ---------------- recordings ---------------- */
.rec-cols {
  flex: 1; min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr) minmax(0, 1.1fr);
  gap: 32px;
}
.rec-col { min-height: 0; display: flex; flex-direction: column; }
.rec-head {
  flex: none;
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.rec-count { color: var(--accent); }
.rec-list { flex: 1; min-height: 0; overflow-y: auto; scrollbar-width: none; }
.rec-list::-webkit-scrollbar { display: none; }
.rent {
  border: 3px solid transparent;
  border-radius: var(--radius);
  background: var(--bg-raised);
  padding: 18px 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.12s ease-out, border-color 0.12s ease-out, box-shadow 0.12s ease-out;
}
.rent.focused {
  border-color: var(--ring);
  box-shadow: var(--glow);
  background: #232833;
}
.re-head { display: flex; align-items: baseline; gap: 12px; }
.re-head .re-title {
  flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.re-play { flex: none; color: var(--accent); font-size: 17px; }
.re-title { font-size: 24px; font-weight: 600; }
.re-sub {
  font-size: 19px; color: var(--text-dim);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.re-chips { margin-top: 10px; display: flex; gap: 10px; }
.chip {
  font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 3px 10px;
  color: var(--text-dim);
}
.chip.rec { background: var(--red); border-color: transparent; color: #FFFFFF; }
.chip.series { color: var(--accent); border-color: rgba(242, 140, 40, 0.45); }
.rconf {
  display: flex; align-items: center; gap: 20px;
  background: rgba(229, 72, 77, 0.10);
  border: 3px solid rgba(229, 72, 77, 0.40);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin: -4px 0 12px 24px;
}
.rconf .q { flex: 1; font-size: 21px; color: #F1B9BB; }
.rbtn {
  flex: none; height: 52px; min-width: 120px;
  font: inherit; font-size: 21px; font-weight: 600;
  color: var(--text);
  background: var(--bg-raised);
  border: 3px solid var(--edge);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}
.rbtn.yes { border-color: rgba(229, 72, 77, 0.55); color: #F1B9BB; }
.rbtn.focused {
  border-color: var(--ring);
  box-shadow: var(--glow);
  background: #2A303C;
}
.rec-empty {
  border: 2px dashed var(--edge);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text-dim);
  font-size: 21px;
  line-height: 1.55;
}

/* ---------------- films (VOD) ---------------- */
.vod-chips {
  flex: none;
  display: flex; gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px 6px;
  margin-bottom: 18px;
}
.vod-chips::-webkit-scrollbar { display: none; }
.vchip {
  flex: none;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 24px;
  max-width: 380px;
  font: inherit; font-size: 20px; font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-raised);
  border: 3px solid var(--edge);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
}
.vchip-name { overflow: hidden; text-overflow: ellipsis; }
.vchip-count {
  font-size: 15px; font-weight: 500;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}
.vchip svg { flex: none; width: 22px; height: 22px; }
.vchip.on { color: var(--accent); border-color: rgba(242, 140, 40, 0.45); }
.vchip.focused {
  transform: translateY(-2px);
  border-color: var(--ring);
  box-shadow: var(--glow);
  background: #2A303C;
  color: #FFFFFF;
}

.vod-scroll {
  flex: 1; min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
}
.vod-scroll::-webkit-scrollbar { display: none; }
.vod-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  padding: 4px 2px 8px;
}
.vod-card {
  aspect-ratio: 5 / 7;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  text-align: left;
  font: inherit; color: var(--text);
  background-color: var(--bg-inset);
  background-size: cover;
  border: 3px solid rgba(42, 47, 56, 0.7);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.12s ease-out, border-color 0.12s ease-out,
              box-shadow 0.12s ease-out;
}
.vod-card.focused {
  transform: scale(1.035);
  border-color: var(--ring);
  box-shadow: var(--glow), 0 18px 40px rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.vc-title {
  font-size: 21px; font-weight: 600; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.vod-card.focused .vc-title { color: #FFFFFF; }
.vc-meta { display: flex; align-items: center; gap: 8px; }
.vc-year {
  font-size: 17px; font-weight: 500;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.vc-q {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--accent);
  border: 1.5px solid rgba(242, 140, 40, 0.45);
  border-radius: 6px; padding: 2px 7px;
}
.vod-status { min-height: 8px; }
.vod-msg { padding: 28px 8px; color: var(--text-dim); font-size: 22px; }

/* film / series detail overlay */
.vod-detail {
  position: fixed; inset: 0; z-index: 40;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 12, 16, 0.78);
}
.vd-card {
  display: flex; gap: 40px;
  width: min(1240px, calc(100vw - 2 * var(--safe-x)));
  max-height: calc(100vh - 2 * var(--safe-y) - 40px);
  background: var(--bg-raised);
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}
.vd-hero {
  flex: none;
  width: 340px;
  aspect-ratio: 5 / 7;
  border-radius: 12px;
  background-color: var(--bg-inset);
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(238, 241, 246, 0.06),
              inset 0 -80px 90px -60px rgba(0, 0, 0, 0.55);
}
.vd-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.vd-title { font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.vd-meta { font-size: 20px; color: var(--text-dim); line-height: 1.5; margin-bottom: 14px; }
.vd-rating {
  display: inline-block; align-self: flex-start;
  font-size: 16px; font-weight: 700;
  color: var(--accent);
  border: 2px solid rgba(242, 140, 40, 0.45);
  border-radius: 8px; padding: 4px 12px;
  margin-bottom: 14px;
}
.vd-plot {
  font-size: 21px; line-height: 1.55; color: var(--text-dim);
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.vd-actions { margin-top: auto; display: flex; gap: 16px; }
.vd-act {
  flex: none; height: 62px; min-width: 170px;
  font: inherit; font-size: 23px; font-weight: 700;
  color: var(--text);
  background: var(--bg-raised);
  border: 3px solid var(--edge);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out,
              background 0.12s ease-out;
}
.vd-act.primary {
  background: linear-gradient(135deg, var(--focus), var(--accent));
  color: #15181D;
  border: none;
}
.vd-act.focused { border-color: var(--ring); box-shadow: var(--glow); background: #2A303C; }
.vd-act.primary.focused { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), var(--glow); }

/* series seasons / episodes list inside the detail card */
.vs-list {
  flex: 1; min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 6px;
}
.vs-list::-webkit-scrollbar { display: none; }
.vs-row {
  flex: none;
  display: flex; align-items: center; gap: 16px;
  min-height: 56px;
  padding: 8px 18px;
  font: inherit; font-size: 21px; font-weight: 500;
  color: var(--text);
  text-align: left;
  background: var(--bg-inset);
  border: 3px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out,
              background 0.12s ease-out;
}
.vs-row.focused {
  border-color: var(--ring);
  box-shadow: var(--glow);
  background: #232833;
}
.vs-num {
  flex: none; width: 40px; text-align: right;
  font-size: 19px; font-weight: 600;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.vs-name {
  flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vs-row.focused .vs-name { color: #FFFFFF; }
.vs-count { flex: none; font-size: 16px; color: var(--text-faint); }

/* search keyboard overlay (reuses .kb-* key styles) */
.vod-kb {
  position: fixed; inset: 0; z-index: 45;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 12, 16, 0.72);
}
.vod-kb-panel {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
  background: rgba(22, 25, 31, 0.97);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

/* VOD player overlay */
.vod-player { position: fixed; inset: 0; z-index: 50; background: #000; }
.vod-player video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.vp-chrome {
  position: absolute;
  left: var(--safe-x); right: var(--safe-x); bottom: 96px;
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px 28px 18px;
  background: linear-gradient(transparent, rgba(13, 15, 19, 0.92) 38%);
}
.vp-title {
  font-size: 30px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vp-bar {
  height: 10px;
  border-radius: 5px;
  background: var(--edge);
  overflow: hidden;
}
.vp-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--focus), var(--accent));
  border-radius: 5px;
}
.vp-times {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 21px; font-weight: 600;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.vp-times .err { color: var(--accent); font-weight: 700; }
.vp-busy {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.vp-busy-card {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  background: rgba(13, 15, 19, 0.95);
  border: 3px solid var(--ring);
  box-shadow: var(--glow), 0 24px 64px rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  padding: 40px 60px;
  max-width: 80%;
  text-align: center;
}
.vp-busy-head { font-size: 32px; font-weight: 700; }
.vp-busy-text { font-size: 21px; line-height: 1.5; color: var(--text-dim); }
.vp-hints { position: absolute; left: var(--safe-x); right: var(--safe-x); bottom: var(--safe-y); margin-top: 0; }

/* ---------------- reminder banner ---------------- */
.reminder-banner {
  position: fixed;
  top: var(--safe-y); left: 50%;
  transform: translate(-50%, -16px);
  opacity: 0;
  z-index: 60;
  display: flex; align-items: center; gap: 24px;
  background: rgba(22, 25, 31, 0.97);
  border: 3px solid var(--ring);
  box-shadow: var(--glow), 0 18px 48px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius);
  padding: 18px 26px;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  pointer-events: none;
}
.reminder-banner.show { opacity: 1; transform: translate(-50%, 0); }
.rb-bell { font-size: 34px; line-height: 1; }
.rb-text { font-size: 24px; }
.rb-text b { font-weight: 600; }
.rb-sub { display: block; margin-top: 2px; font-size: 18px; color: var(--text-dim); }
.rb-watch, .rb-dismiss {
  flex: none; height: 52px; padding: 0 28px;
  font: inherit; font-size: 21px; font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.12s ease-out, transform 0.12s ease-out;
}
.rb-watch {
  background: linear-gradient(135deg, var(--focus), var(--accent));
  color: #15181D;
  border: none;
}
.rb-dismiss {
  background: var(--bg-raised);
  color: var(--text);
  border: 3px solid var(--edge);
}
.rb-watch.focused { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), var(--glow); }
.rb-dismiss.focused { border-color: var(--ring); box-shadow: var(--glow); background: #2A303C; }
.rb-hint { color: var(--text-faint); font-size: 15px; white-space: nowrap; }

/* ---------------- toasts ---------------- */
#toasts {
  position: fixed;
  bottom: 118px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  z-index: 70;
  pointer-events: none;
}
.toast {
  background: rgba(22, 25, 31, 0.96);
  border: 1px solid var(--edge);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 21px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  animation: toast-in 0.15s ease-out;
  max-width: 1200px;
}
.toast.err { border-left-color: var(--red); color: #F6C8CA; }
.toast.out { opacity: 0; transform: translateY(6px); transition: 0.2s ease-out; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------- player ---------------- */
.screen-player { background: #000; padding: 0; }
#video { width: 100%; height: 100%; object-fit: contain; background: #000; }

.player-status {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 22px;
  background: rgba(13, 15, 19, 0.90);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 44px 60px;
  max-width: 80%;
  text-align: center;
}
.player-status .status-line { font-size: 32px; font-weight: 600; }
.player-status.err .status-line { color: var(--accent); letter-spacing: 0.06em; }
.player-status .status-sub {
  font-size: 21px; color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  max-width: 780px;
}
.spinner {
  width: 52px; height: 52px; border-radius: 50%;
  border: 5px solid var(--edge);
  border-top-color: var(--focus);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.channel-banner {
  position: absolute;
  left: var(--safe-x); bottom: var(--safe-y);
  display: flex; align-items: baseline;
  background: rgba(13, 15, 19, 0.85);
  border-left: 6px solid var(--focus);
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 28px; font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.channel-banner.show { opacity: 1; }
.channel-banner .bnum { color: var(--focus); margin-right: 16px; font-variant-numeric: tabular-nums; }

/* ---------------- smaller viewports (dev browsers) ---------------- */
@media (max-width: 1400px) {
  :root { --safe-x: 40px; --safe-y: 22px; }
  .layout { gap: 26px; }
  .row { height: 54px; padding: 0 16px; gap: 14px; margin-bottom: 6px; }
  .row .num { width: 58px; font-size: 19px; }
  .row .logo { height: 28px; max-width: 100px; }
  .row .name { font-size: 21px; }
  .row .tag { font-size: 12px; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 34px; height: 34px; font-size: 19px; border-radius: 8px; }
  .clock { font-size: 22px; }
  .sec-title { font-size: 24px; }
  .epg-channel-name { font-size: 26px; margin-bottom: 12px; }
  .now-card { padding: 18px; }
  .epg-title { font-size: 26px; }
  .epg-subtitle { font-size: 18px; }
  .epg-summary { font-size: 17px; -webkit-line-clamp: 3; }
  .next-card { padding: 16px 20px; }
  .next-title { font-size: 21px; }
  .hint-bar { font-size: 16px; gap: 20px; }
  .player-status { padding: 28px 40px; gap: 14px; }
  .player-status .status-line { font-size: 26px; }
  .player-status .status-sub { font-size: 18px; }
  .channel-banner { font-size: 22px; padding: 12px 24px; }

  .menu-body { gap: 48px; }
  .menu-mark { width: 72px; height: 72px; font-size: 40px; border-radius: 18px; }
  .menu-word { font-size: 48px; }
  .menu-tag { font-size: 15px; margin-top: 8px; }
  .menu-nav { gap: 24px; }
  .menu-card { width: 240px; padding: 28px 20px 24px; }
  .mc-icon { width: 64px; height: 64px; margin-bottom: 12px; }
  .mc-label { font-size: 22px; }
  .mc-sub { font-size: 15px; }

  .menu-body.has-rail { gap: 26px; }
  .menu-body.has-rail .menu-brand { transform: scale(0.66); }
  .rail-head { font-size: 14px; margin-bottom: 8px; }
  .rail-card { width: 220px; padding: 12px 16px; gap: 4px; }
  .rc-ch { font-size: 12px; }
  .rc-title { font-size: 18px; }
  .rc-when { font-size: 13px; }
  .rc-bar { left: 16px; right: 16px; bottom: 10px; }
  .picker-body { gap: 40px; }
  .picker-nav { gap: 18px; }
  .profile-card { width: 168px; padding: 24px 14px 20px; }
  .pc-avatar { width: 84px; height: 84px; font-size: 32px; margin-bottom: 10px; }
  .pc-name { font-size: 20px; }
  .kb-body { gap: 28px; }
  .kb-label { font-size: 14px; margin-bottom: 8px; }
  .kb-name { min-width: 320px; font-size: 28px; min-height: 54px; padding: 6px 18px; }
  .kb-grid { grid-template-columns: repeat(10, 52px); gap: 8px; }
  .pin-body { gap: 28px; }
  .pin-grid { grid-template-columns: repeat(3, 52px); gap: 8px; }
  .pin-dots { min-width: 250px; min-height: 54px; padding: 6px 22px; gap: 14px; }
  .pin-dot { width: 13px; height: 13px; }
  .kb-key { height: 48px; font-size: 20px; border-width: 2px; }
  .enroll-preview .enroll-line { font-size: 16px; padding: 20px 24px; }
  .kb-key.wide { font-size: 14px; }

  .guide-wrap { grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; }
  .grow { height: 54px; }
  .gcell { padding: 0 8px; }
  .gcell .t { font-size: 16px; }
  .gch { width: 300px; }
  .gch-name { font-size: 17px; }
  .gch-num { width: 48px; font-size: 16px; }
  .gtick { font-size: 15px; }
  .gtick.half { font-size: 12px; }
  .g-details { padding: 18px; }
  .gd-title { font-size: 24px; }
  .gd-time { font-size: 17px; }
  .gd-desc { font-size: 16px; -webkit-line-clamp: 6; }
  .gact { height: 54px; font-size: 19px; padding: 0 18px; }
  .gact svg { width: 22px; height: 22px; }
  .rec-cols { gap: 24px; }
  .rent { padding: 12px 16px; }
  .re-play { font-size: 15px; }
  .re-sub { font-size: 16px; }
  .rec-empty { font-size: 17px; padding: 22px; }
  .rconf .q { font-size: 17px; }
  .rbtn { height: 44px; min-width: 96px; font-size: 17px; }
  .reminder-banner { padding: 12px 18px; gap: 16px; }
  .rb-text { font-size: 19px; }
  .rb-watch, .rb-dismiss { height: 44px; padding: 0 20px; font-size: 17px; }
  .toast { font-size: 17px; padding: 10px 18px; }
  .vod-chips { margin-bottom: 12px; gap: 8px; }
  .vchip { height: 44px; padding: 0 16px; font-size: 16px; max-width: 260px; border-width: 2px; }
  .vchip svg { width: 18px; height: 18px; }
  .vchip-count { font-size: 12px; }
  .vod-grid { gap: 12px; }
  .vod-card { padding: 12px; }
  .vc-title { font-size: 16px; }
  .vc-year { font-size: 13px; }
  .vc-q { font-size: 11px; padding: 1px 5px; }
  .vod-msg { font-size: 17px; padding: 18px 4px; }
  .vd-card { padding: 20px; gap: 22px; }
  .vd-hero { width: 200px; }
  .vd-title { font-size: 26px; }
  .vd-meta { font-size: 16px; }
  .vd-plot { font-size: 16px; -webkit-line-clamp: 4; }
  .vd-act { height: 48px; min-width: 130px; font-size: 18px; }
  .vs-row { min-height: 44px; font-size: 17px; padding: 6px 14px; }
  .vs-num { font-size: 15px; width: 30px; }
  .vs-count { font-size: 13px; }
  .vod-kb-panel { gap: 24px; padding: 22px 26px; }
  .vp-title { font-size: 22px; }
  .vp-times { font-size: 17px; }
  .vp-busy-card { padding: 26px 36px; gap: 12px; }
  .vp-busy-head { font-size: 26px; }
  .vp-busy-text { font-size: 17px; }
}
