:root {
  color-scheme: dark;
  --v2-bg: #090b0d;
  --v2-panel: #15191e;
  --v2-panel-2: #20252d;
  --v2-text: #f7f8fa;
  --v2-muted: #abb2bf;
  --v2-line: #363d48;
  --v2-green: #34d19b;
  --v2-gold: #ffc94d;
  --v2-red: #ff7f87;
  --v2-blue: #229ed9;
  --v2-dock-height: 64px;
  --v2-control: rgba(18, 22, 27, .78);
  --v2-ease: cubic-bezier(.2, .8, .2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: #000; color: var(--v2-text); }
body { min-height: 100svh; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }
button, input, select { font: inherit; }
button, select, input[type="range"] { cursor: pointer; }
button { min-width: 44px; min-height: 44px; color: inherit; }
button:focus-visible, select:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.v2-app, .v2-shell {
  min-height: 100svh;
  width: 100%;
  margin: 0 auto;
  background: var(--v2-bg);
}

.v2-loading-shell { pointer-events: none; }
.v2-loading-shell .v2-stage { background: #070a0d; }
.v2-loading-control { cursor: default; user-select: none; }
.v2-loading-shell .v2-loading-control { filter: saturate(.84); }
.v2-stage-loading, .v2-media-loading {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--v2-muted);
  font-weight: 800;
}
.v2-media-loading { background: rgba(2, 3, 3, .3); pointer-events: none; }
.v2-loader-ring { width: 24px; height: 24px; border: 3px solid rgba(255,255,255,.16); border-top-color: var(--v2-green); border-radius: 50%; animation: v2-loader-spin .8s linear infinite; }
.v2-skeleton { position: relative; display: block; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: #20252d; }
.v2-skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 15%, rgba(255,255,255,.08) 50%, transparent 85%); transform: translateX(-100%); animation: v2-skeleton-shimmer 1.4s ease-in-out infinite; }
.v2-skeleton-title { width: min(58vw, 310px); height: 31px; border-radius: 8px; }
.v2-skeleton-tags { width: min(42vw, 220px); height: 16px; margin-top: 9px; border-radius: 6px; }
.v2-skeleton-progress { position: fixed; z-index: 18; left: 0; bottom: calc(var(--v2-dock-height) + env(safe-area-inset-bottom)); width: 100vw; height: 5px; background: rgba(255,255,255,.22); }
@keyframes v2-loader-spin { to { transform: rotate(360deg); } }
@keyframes v2-skeleton-shimmer { to { transform: translateX(100%); } }

.v2-shell { position: relative; height: 100svh; overflow: hidden; }
.v2-player-screen { height: 100svh; min-height: 0; overflow: hidden; overscroll-behavior: none; touch-action: pan-x; isolation: isolate; }
.v2-topbar {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  min-height: calc(76px + env(safe-area-inset-top));
  padding: max(12px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 18px max(16px, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .4) 58%, transparent 100%);
  pointer-events: none;
}
.v2-topbar > * {
  pointer-events: auto;
}
.v2-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(3, 4, 5, .82);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
  overflow: hidden;
}
.v2-logo img { width: 38px; height: 38px; display: block; object-fit: contain; }
.v2-top-spacer { flex: 1; }
.v2-balance { display: inline-flex; align-items: center; gap: 7px; color: var(--v2-gold); font-weight: 800; border: 0; border-radius: 10px; background: rgba(8, 10, 13, .42); padding: 0 10px; backdrop-filter: blur(12px); }
.v2-coin { width: 25px; height: 25px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.v2-language-picker { position: relative; z-index: 24; }
.v2-language-toggle { width: 52px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: var(--v2-control); display: grid; place-items: center; backdrop-filter: blur(12px); }
.v2-language-toggle img, .v2-language-option img { display: block; width: 28px; height: 18px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.22); }
.v2-language-menu { position: absolute; top: calc(100% + 8px); right: 0; width: min(236px, calc(100vw - 24px)); max-height: min(520px, calc(100svh - 92px)); overflow-y: auto; padding: 6px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: rgba(24,28,33,.98); box-shadow: 0 18px 46px rgba(0,0,0,.58); display: none; }
.v2-language-picker.open .v2-language-menu { display: grid; gap: 2px; }
.v2-language-option { width: 100%; min-height: 44px; padding: 0 10px; border: 0; border-radius: 8px; background: transparent; color: #cdd3dd; display: grid; grid-template-columns: 36px minmax(0,1fr); align-items: center; gap: 8px; text-align: left; font-size: 16px; font-weight: 700; }
.v2-language-option[aria-selected="true"] { background: rgba(52,209,155,.16); color: #43dfac; }
.v2-profile-button, .v2-login-button { border: 1px solid rgba(255,255,255,.18); background: var(--v2-control); border-radius: 50%; overflow: hidden; padding: 0; backdrop-filter: blur(12px); }
.v2-profile-button img { width: 44px; height: 44px; display: block; object-fit: cover; }
.v2-login-button { border-radius: 10px; padding: 0 16px; font-weight: 850; color: var(--v2-text); }

.v2-stage { position: absolute; z-index: 0; inset: 0; min-height: 0; background: #020303; overflow: hidden; display: grid; place-items: center; }
.v2-stage::after { content: ""; position: absolute; z-index: 1; inset: 38% 0 0; pointer-events: none; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.08) 34%, rgba(0,0,0,.74) 100%); }
.v2-video, .v2-poster { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; max-height: 100%; object-fit: contain; background: #000; }
.v2-poster { object-fit: cover; filter: brightness(.62) saturate(.9); }
.v2-video-hint { position: absolute; z-index: 4; inset: 0; display: grid; place-items: center; pointer-events: none; opacity: 0; transition: opacity 180ms var(--v2-ease); }
.v2-video-hint.show { opacity: 1; }
.v2-video-hint span { padding: 12px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(10,12,15,.72); backdrop-filter: blur(12px); font-weight: 800; }
.v2-gate { position: absolute; z-index: 3; inset: 0; display: grid; place-content: center; gap: 12px; text-align: center; padding: 28px; background: rgba(0,0,0,.56); backdrop-filter: blur(4px); }
.v2-gate strong { font-size: clamp(20px, 6vw, 28px); }
.v2-gate p { margin: 0; color: #d1d5db; }
.v2-primary { border: 1px solid #55e2b4; border-radius: 12px; background: var(--v2-green); color: #04110c; font-weight: 900; padding: 0 22px; }

.v2-side-tools { position: fixed; right: max(14px, env(safe-area-inset-right)); bottom: calc(var(--v2-dock-height) + 13px + env(safe-area-inset-bottom)); display: grid; gap: 8px; z-index: 16; }
.v2-icon-button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: var(--v2-control); display: grid; place-items: center; backdrop-filter: blur(12px); transition: background-color 180ms var(--v2-ease), border-color 180ms var(--v2-ease), color 180ms var(--v2-ease); }
.v2-icon-button svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.v2-icon-button:disabled { opacity: .38; cursor: default; }
.v2-icon-button[aria-pressed="true"] { color: #d6dbe3; }

.v2-meta { position: fixed; z-index: 12; left: max(18px, env(safe-area-inset-left)); right: 84px; bottom: calc(var(--v2-dock-height) + 14px + env(safe-area-inset-bottom)); width: min(720px, calc(100vw - 110px)); padding: 0; background: transparent; pointer-events: none; text-shadow: 0 2px 16px rgba(0,0,0,.88); }
.v2-meta > * { pointer-events: auto; }
.v2-meta-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.v2-meta h1 { margin: 0; max-width: min(68vw, 640px); font-size: clamp(24px, 3vw, 34px); line-height: 1.08; letter-spacing: -.02em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.v2-episode-chip { padding: 5px 9px; color: var(--v2-gold); border: 1px solid rgba(255,201,77,.6); border-radius: 8px; font-size: 13px; font-weight: 850; background: rgba(82,60,12,.48); box-shadow: 0 4px 18px rgba(0,0,0,.26); }
.v2-tags { margin: 6px 0 0; color: #e4e7ec; font-size: 14px; font-weight: 750; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-progress { --v2-progress-percent: 0%; position: fixed; z-index: 18; left: 0; bottom: calc(var(--v2-dock-height) + env(safe-area-inset-bottom)); width: 100vw; height: 5px; margin: 0; border: 0; border-radius: 999px; appearance: none; -webkit-appearance: none; background: linear-gradient(90deg, var(--v2-green) 0 var(--v2-progress-percent), rgba(255,255,255,.28) var(--v2-progress-percent) 100%); cursor: ew-resize; }
.v2-progress::-webkit-slider-runnable-track { height: 5px; border-radius: 999px; background: transparent; }
.v2-progress::-webkit-slider-thumb { width: 12px; height: 12px; margin-top: -3.5px; border: 0; appearance: none; -webkit-appearance: none; background: transparent; }
.v2-progress::-moz-range-track { height: 5px; border: 0; border-radius: 999px; background: transparent; }
.v2-progress::-moz-range-progress { height: 5px; border-radius: 999px; background: transparent; }
.v2-progress::-moz-range-thumb { width: 12px; height: 12px; border: 0; background: transparent; }
.v2-time { display: none; }

.v2-actions { position: fixed; z-index: 14; left: 50%; bottom: 0; width: min(100%, 520px); min-height: calc(var(--v2-dock-height) + env(safe-area-inset-bottom)); transform: translateX(-50%); display: grid; grid-template-columns: 1fr 1.08fr 1fr; gap: 8px; padding: 8px 10px max(8px, env(safe-area-inset-bottom)); background: rgba(16,20,25,.96); border-top: 0; box-shadow: 0 0 0 100vmax rgba(16,20,25,.96), 0 -18px 48px rgba(0,0,0,.34); clip-path: inset(0 -100vmax 0); }
.v2-action { height: 48px; min-height: 44px; border: 1px solid #596473; border-radius: 8px; background: #1b2128; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background-color 180ms var(--v2-ease), border-color 180ms var(--v2-ease), color 180ms var(--v2-ease); }
.v2-action svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.v2-action.favorite { color: var(--v2-gold); border-color: #a47c28; background: #3c3018; }
.v2-action.unlock { color: #03110c; border-color: #45e0ad; background: var(--v2-green); }
.v2-action:disabled { cursor: not-allowed; opacity: .45; }
.v2-action:hover, .v2-icon-button:hover, .v2-login-button:hover { border-color: rgba(255,255,255,.42); background-color: rgba(40,46,55,.94); }
.v2-action.unlock:hover { border-color: #79edc6; background-color: #54dfad; }
.v2-action.unlock:disabled:hover { border-color: #45e0ad; background-color: var(--v2-green); }

.v2-modal-backdrop { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.76); backdrop-filter: blur(7px); }
.v2-modal { width: min(100%, 470px); max-height: min(88svh, 760px); overflow: auto; border: 1px solid #454d59; border-radius: 17px; background: linear-gradient(135deg, #182527, #18151f 70%, #261923); padding: 24px; }
.v2-unlock-modal { width: min(100%, 660px); border-color: #3d444d; border-radius: 18px; background: rgba(24,27,32,.98); padding: clamp(28px, 5vw, 42px) clamp(24px, 5vw, 38px); box-shadow: 0 20px 70px rgba(0,0,0,.6); }
.v2-unlock-confirmation h2 { margin: 0; color: #f4f5f7; font-size: clamp(23px, 4.2vw, 34px); line-height: 1.45; text-align: center; }
.v2-unlock-price-group { display: inline-flex; align-items: center; gap: 10px; margin-inline: 7px; color: var(--v2-gold); vertical-align: middle; }
.v2-unlock-price-group strong { font-variant-numeric: tabular-nums; }
.v2-unlock-coin { width: 28px; height: 28px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.v2-unlock-modal .v2-modal-actions { gap: 16px; margin-top: 30px; }
.v2-unlock-modal .v2-modal-actions button { min-height: 68px; border-radius: 13px; font-size: clamp(20px, 3vw, 27px); }
.v2-unlock-modal .v2-primary:disabled { cursor: wait; opacity: .7; }
.v2-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.v2-modal h2 { margin: 5px 0 8px; font-size: clamp(25px, 7vw, 38px); }
.v2-modal p { color: #c4cad3; line-height: 1.55; }
.v2-close { border: 0; background: transparent; font-size: 30px; line-height: 1; }
.v2-modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.v2-secondary { border: 1px solid var(--v2-line); border-radius: 12px; background: var(--v2-panel-2); font-weight: 800; padding: 0 16px; }
.v2-auth-list, .v2-follow-list { display: grid; gap: 12px; margin-top: 20px; }
.v2-auth-list button, .v2-follow-list a { min-height: 62px; border: 1px solid var(--v2-line); border-radius: 12px; background: var(--v2-panel-2); color: var(--v2-text); display: flex; align-items: center; justify-content: center; gap: 12px; text-decoration: none; font-weight: 850; font-size: 18px; }
.v2-auth-list button { transition: background-color 180ms var(--v2-ease), border-color 180ms var(--v2-ease), color 180ms var(--v2-ease); }
.v2-auth-list button:not(:disabled):hover { border-color: rgba(255,255,255,.48); background: #292f38; }
.v2-auth-list button:disabled { border-color: #303640; background: #1b2027; color: #747b85; cursor: not-allowed; opacity: 1; }
.v2-auth-list button:disabled .v2-provider-mark { color: #747b85; }
.v2-auth-list button:disabled .v2-provider-mark svg path { fill: currentColor; }
.v2-follow-list a.telegram { border-color: var(--v2-green); }
.v2-provider-mark { width: 30px; text-align: center; font-weight: 950; color: var(--v2-blue); }
.v2-provider-mark svg { display: block; width: 28px; height: 28px; margin: auto; fill: currentColor; }
.v2-provider-email .v2-provider-mark svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.v2-provider-x:not(:disabled) .v2-provider-mark, .v2-provider-email:not(:disabled) .v2-provider-mark { color: var(--v2-text); }
.v2-provider-telegram:not(:disabled) .v2-provider-mark { color: #229ed9; }
.v2-balance-detail { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 18px 0; }
.v2-balance-detail div { padding: 12px 8px; border: 1px solid var(--v2-line); border-radius: 10px; text-align: center; }
.v2-balance-detail small { display: block; color: var(--v2-muted); }
.v2-balance-detail strong { font-size: 20px; color: var(--v2-gold); }

.v2-profile { width: min(100%, 480px); min-height: 100svh; margin: 0 auto; padding: max(12px, env(safe-area-inset-top)) 12px max(18px, env(safe-area-inset-bottom)); background: var(--v2-bg); }
.v2-profile-header { display: grid; grid-template-columns: 44px 48px minmax(0, 1fr); gap: 9px; align-items: center; }
.v2-back { border: 1px solid var(--v2-line); border-radius: 10px; background: var(--v2-panel-2); font-size: 26px; }
.v2-profile-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--v2-green); }
.v2-profile-name { min-width: 0; }
.v2-profile-name h1 { margin: 0; font-size: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-profile-name p, .v2-profile-id { margin: 1px 0 0; color: var(--v2-muted); font-size: 12px; font-weight: 700; }
.v2-profile-id { grid-column: 3; justify-self: start; }
.v2-wallet { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; margin: 14px 0; }
.v2-wallet button { min-height: 52px; padding: 5px 7px; border-radius: 10px; border: 1px solid var(--v2-line); background: var(--v2-panel-2); font-size: 14px; font-weight: 900; }
.v2-wallet .v2-coin { width: 21px; height: 21px; stroke-width: 1.8; }
.v2-wallet button:first-child { color: var(--v2-gold); border-color: #77602c; }
.v2-wallet .subscribe { color: #03110c; background: var(--v2-green); }
.v2-tabs { display: flex; gap: 6px; margin-bottom: 9px; }
.v2-tabs button { border: 0; border-radius: 9px; background: transparent; color: var(--v2-muted); padding: 0 14px; font-size: 14px; font-weight: 900; }
.v2-tabs button.active { background: var(--v2-panel-2); color: var(--v2-text); }
.v2-notification { min-height: 52px; border: 1px solid var(--v2-line); border-radius: 10px; background: var(--v2-panel-2); padding: 4px 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14px; font-weight: 800; }
.v2-switch { width: 46px; height: 28px; accent-color: var(--v2-green); }
.v2-library { display: grid; gap: 7px; margin-top: 9px; }
.v2-library-item { min-height: 80px; border: 1px solid var(--v2-line); border-radius: 10px; background: var(--v2-panel-2); padding: 7px; display: grid; grid-template-columns: 54px minmax(0, 1fr) 44px; gap: 9px; align-items: center; text-align: left; }
.v2-library-item img { width: 54px; height: 66px; object-fit: cover; border-radius: 7px; }
.v2-library-copy { min-width: 0; padding: 0; border: 0; background: transparent; text-align: left; }
.v2-library-copy strong { display: block; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-library-copy span { display: inline-block; color: var(--v2-gold); margin: 3px 0; font-size: 13px; font-weight: 800; }
.v2-library-copy small { display: block; color: var(--v2-muted); font-size: 11px; }
.v2-remove { border: 1px solid #8f2d35; border-radius: 10px; background: #3a2025; color: var(--v2-red); font-size: 22px; }
.v2-social-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 14px 0 8px; }
.v2-social-row a { min-height: 44px; border: 1px solid var(--v2-line); border-radius: 10px; color: var(--v2-text); text-decoration: none; display: grid; place-items: center; font-size: 13px; font-weight: 850; }
.v2-logout { width: 100%; min-height: 46px; border: 1px solid #9f2730; border-radius: 10px; background: #35181d; color: var(--v2-red); font-size: 14px; font-weight: 900; }
.v2-empty, .v2-loading { min-height: 220px; display: grid; place-items: center; color: var(--v2-muted); text-align: center; padding: 24px; }
.v2-toast { position: fixed; z-index: 120; left: 50%; bottom: max(24px, env(safe-area-inset-bottom)); transform: translateX(-50%); max-width: min(90vw, 430px); padding: 12px 18px; border: 1px solid #4f5966; border-radius: 999px; background: #151a20; color: #fff; font-weight: 800; text-align: center; }

@media (min-width: 769px) {
  :root { --v2-dock-height: 58px; }
  html, body { height: 100%; overflow: hidden; }
  .v2-app, .v2-shell, .v2-player-screen { height: 100dvh; min-height: 100dvh; }
  .v2-stage { bottom: calc(var(--v2-dock-height) + env(safe-area-inset-bottom)); }
  .v2-video { object-fit: contain; object-position: center; }
  .v2-topbar { min-height: 66px; padding: max(10px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) 12px max(14px, env(safe-area-inset-left)); gap: 10px; }
  .v2-logo { width: 44px; height: 44px; }
  .v2-logo img { width: 36px; height: 36px; }
  .v2-side-tools { right: max(16px, env(safe-area-inset-right)); bottom: calc(var(--v2-dock-height) + 12px + env(safe-area-inset-bottom)); }
  .v2-icon-button { width: 44px; height: 44px; }
  .v2-icon-button svg { width: 23px; height: 23px; }
  .v2-meta { left: max(14px, env(safe-area-inset-left)); right: 80px; bottom: calc(var(--v2-dock-height) + 10px + env(safe-area-inset-bottom)); width: min(720px, calc(100vw - 104px)); }
  .v2-meta h1 { max-width: min(68vw, 640px); font-size: 24px; }
  .v2-tags { margin-top: 4px; font-size: 13px; }
  .v2-actions { width: min(100%, 420px); min-height: calc(var(--v2-dock-height) + env(safe-area-inset-bottom)); grid-template-columns: repeat(3, 1fr); padding: 7px 10px max(7px, env(safe-area-inset-bottom)); }
  .v2-action { height: 44px; gap: 7px; }
  .v2-action svg { width: 22px; height: 22px; }
}

@media (orientation: landscape) and (max-height: 520px) {
  :root { --v2-dock-height: 56px; }
  .v2-topbar { min-height: 58px; padding-top: max(6px, env(safe-area-inset-top)); padding-bottom: 8px; }
  .v2-logo { width: 42px; height: 42px; }
  .v2-logo img { width: 34px; height: 34px; }
  .v2-meta { bottom: calc(var(--v2-dock-height) + 10px); }
  .v2-meta h1 { font-size: clamp(20px, 3.5vw, 28px); }
  .v2-tags { margin-top: 4px; }
  .v2-side-tools { bottom: calc(var(--v2-dock-height) + 13px); }
  .v2-icon-button { width: 44px; height: 44px; }
  .v2-actions { width: min(100%, 450px); padding-block: 6px; }
  .v2-profile { padding-inline: max(18px, env(safe-area-inset-left)); }
}

@media (max-width: 600px) {
  :root { --v2-dock-height: 60px; }
  .v2-topbar { gap: 8px; padding-inline: 12px; }
  .v2-logo { width: 44px; height: 44px; }
  .v2-logo img { width: 35px; height: 35px; }
  .v2-language-toggle { width: 52px; }
  .v2-balance { padding-inline: 6px; }
  .v2-login-button { padding-inline: 12px; }
  .v2-meta { left: 14px; right: 72px; bottom: calc(var(--v2-dock-height) + 18px + env(safe-area-inset-bottom)); width: auto; }
  .v2-meta h1 { max-width: 100%; font-size: clamp(22px, 7vw, 30px); }
  .v2-episode-chip { font-size: 12px; }
  .v2-side-tools { right: 10px; bottom: calc(var(--v2-dock-height) + 13px + env(safe-area-inset-bottom)); }
  .v2-icon-button { width: 46px; height: 46px; }
  .v2-actions { width: 100%; padding-block: 6px; }
  .v2-action { gap: 5px; font-size: 14px; }
  .v2-action svg { width: 21px; height: 21px; }
  .v2-unlock-modal .v2-modal-actions { gap: 10px; margin-top: 24px; }
  .v2-unlock-modal .v2-modal-actions button { min-height: 56px; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
