:root {
  --v2-bg: #0a0a0a;
  --v2-text: #f5f5f7;
  --v2-muted: rgba(245, 245, 247, 0.56);
  --v2-line: rgba(245, 245, 247, 0.12);
  --v2-font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --v2-display: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --v2-he: "Heebo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --v2-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --v2-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --v2-duration-fast: 0.32s;
  --v2-duration: 0.56s;
  --v2-duration-slow: 0.72s;
  --v2-menu-duration: 0.82s;
  --v2-menu-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--v2-bg);
}

body.v2 {
  margin: 0;
  min-height: 100vh;
  color: var(--v2-text);
  font-family: var(--v2-font);
  background: var(--v2-bg);
  cursor: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

html[dir="rtl"] body.v2 { font-family: var(--v2-he); }

body.v2.is-menu-open { overflow: hidden; }

.v2-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 10000;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.skip-link:focus { left: 12px; }

a { color: inherit; }

/* Header */
.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 48px);
  transition: background 0.35s var(--v2-ease), backdrop-filter 0.35s var(--v2-ease);
}

.v2-header.is-scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-mark {
  font-family: var(--v2-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  opacity: 0.92;
}

.v2-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 8px 0;
  font: inherit;
}

.v2-menu-bars {
  position: relative;
  width: 22px;
  height: 14px;
}

.v2-menu-bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.38s var(--v2-ease), top 0.38s var(--v2-ease), opacity 0.25s;
}

.v2-menu-bars i:first-child { top: 2px; }
.v2-menu-bars i:last-child { top: 10px; width: 70%; right: 0; left: auto; }

.v2-menu-trigger.is-open .v2-menu-bars i:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.v2-menu-trigger.is-open .v2-menu-bars i:last-child {
  top: 6px;
  width: 100%;
  transform: rotate(-45deg);
}

.v2-menu-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.v2-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.v2-lang button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: 0.42;
  padding: 0;
  transition: opacity 0.2s;
}

.v2-lang button.is-on { opacity: 1; }

/* Full-screen menu */
.v2-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  --v2-menu-shift: 100%;
}

html[dir="rtl"] .v2-menu-panel { --v2-menu-shift: -100%; }

.v2-menu-panel.is-open,
.v2-menu-panel.is-opening,
.v2-menu-panel.is-closing {
  pointer-events: auto;
}

.v2-menu-panel[hidden] { display: none !important; }

.v2-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.v2-menu-panel.is-open .v2-menu-backdrop,
.v2-menu-panel.is-opening .v2-menu-backdrop { opacity: 1; }

.v2-menu-sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(18, 18, 20, 0.88);
  backdrop-filter: saturate(180%) blur(28px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.45);
  transform: translate3d(var(--v2-menu-shift), 0, 0);
}

html[dir="rtl"] .v2-menu-sheet {
  right: auto;
  left: 0;
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 24px 0 80px rgba(0, 0, 0, 0.45);
}

.v2-menu-panel.is-open .v2-menu-sheet { transform: translate3d(0, 0, 0); }

.v2-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(32px, 6vh, 56px);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity var(--v2-duration) var(--v2-menu-ease),
    transform var(--v2-duration) var(--v2-menu-ease);
  transition-delay: 0.1s;
}

.v2-menu-panel.is-open .v2-menu-top,
.v2-menu-panel.is-opening .v2-menu-top {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.v2-menu-panel.is-closing .v2-menu-top {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition-delay: 0s;
  transition-duration: var(--v2-duration-fast);
}

.v2-menu-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.48;
}

.v2-menu-close {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.2s;
}

.v2-menu-close:hover { opacity: 1; }

.v2-menu-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.6vh, 14px);
  flex: 1;
}

.v2-menu-link {
  font-family: var(--v2-display);
  font-size: clamp(34px, 6.4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity var(--v2-duration) var(--v2-ease-soft),
    transform var(--v2-duration) var(--v2-ease-soft),
    color 0.2s;
  transition-delay: calc(0.05s * var(--i) + 0.08s);
}

.v2-menu-panel.is-open .v2-menu-link,
.v2-menu-panel.is-opening .v2-menu-link {
  opacity: 0.88;
  transform: translate3d(0, 0, 0);
}

.v2-menu-panel.is-closing .v2-menu-link {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition-delay: 0s;
  transition-duration: var(--v2-duration-fast);
}

.v2-menu-link:hover { opacity: 1; color: #fff; }

.v2-menu-link-cta {
  margin-top: 8px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0.55 !important;
}

.v2-menu-link-cta:hover { opacity: 0.85 !important; }

.v2-menu-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity var(--v2-duration) var(--v2-ease-soft),
    transform var(--v2-duration) var(--v2-ease-soft);
  transition-delay: 0.24s;
}

.v2-menu-panel.is-open .v2-menu-foot,
.v2-menu-panel.is-opening .v2-menu-foot {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.v2-menu-panel.is-closing .v2-menu-foot {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition-delay: 0s;
  transition-duration: var(--v2-duration-fast);
}

.v2-menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.45;
}

.v2-menu-meta a {
  text-decoration: none;
  transition: opacity 0.2s;
}

.v2-menu-meta a:hover { opacity: 1; }

/* Homepage presentation */
.v2-show {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.v2-show-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v2-show-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s var(--v2-ease), transform 8s linear;
}

.v2-show-img.is-on {
  opacity: 1;
  transform: scale(1);
}

.v2-show-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--v2-ease-soft);
}

.v2-show.is-demo-reel .v2-show-video {
  opacity: 1;
}

.v2-show.is-demo-reel .v2-show-img {
  opacity: 0 !important;
}

.v2-show-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.62) 100%),
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

.v2-show-frame {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px clamp(20px, 4vw, 48px) 36px;
}

.v2-show-brand {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.5;
  text-transform: uppercase;
}

.v2-show-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 0;
  transition:
    opacity var(--v2-duration) var(--v2-ease-soft),
    transform var(--v2-duration) var(--v2-ease-soft);
}

.v2-show-copy.is-changing {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.v2-show-kicker {
  margin: 0 0 12px;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.58;
}

.v2-show-kicker[hidden] { display: none; }

.v2-show-title {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(40px, 9vw, 108px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.v2-show-title[hidden] { display: none; }

.v2-show-hand {
  margin: 14px 0 0;
  font-family: var(--v2-display);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.58;
  transform: none;
}

.v2-show-hand[hidden] { display: none; }

.v2-show-body {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  opacity: 0.72;
}

.v2-show-body[hidden] { display: none; }

.v2-show-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  max-width: 560px;
}

.v2-show-list[hidden] { display: none; }

.v2-show-list li {
  font-family: var(--v2-display);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.v2-show-list li + li { margin-top: 10px; }

.v2-show-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  margin-top: 8px;
}

.v2-show-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.42);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0;
}

.v2-show-arrow:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.06);
}

.v2-show-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 320px;
}

.v2-show-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.v2-show-dots button.is-on {
  background: #fff;
  transform: scale(1.15);
}

.v2-show-index {
  min-width: 64px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.42;
  text-align: center;
}

.v2-show-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 28px;
}

.v2-cta {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid var(--v2-line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.v2-cta:hover {
  background: #fff;
  color: #121212;
}

.v2-scroll {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  opacity: 0.45;
}

.v2-scroll:hover { opacity: 0.85; }

/* About */
.v2-about {
  padding: 120px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--v2-line);
}

.v2-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.v2-kicker {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.45;
}

.v2-about h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.v2-about-copy {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.62;
  max-width: 520px;
}

.v2-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1a1a;
}

.v2-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 18%;
}

/* Contact */
.v2-contact {
  padding: 120px clamp(20px, 4vw, 48px);
  text-align: center;
  border-top: 1px solid var(--v2-line);
}

.v2-contact h2 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(36px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.v2-good {
  margin: 20px 0 0;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  opacity: 0.45;
}

.v2-contact-lead {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.55;
}

.v2-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.v2-contact-actions a {
  padding: 14px 22px;
  border: 1px solid var(--v2-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.v2-contact-actions a:hover {
  background: #fff;
  color: #121212;
}

/* Tools */
.v2-tools {
  padding: 80px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--v2-line);
}

.v2-tools-head {
  max-width: 1200px;
  margin: 0 auto 32px;
}

.v2-tools-head h2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
}

.v2-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.v2-tool {
  display: block;
  padding: 28px;
  border: 1px solid var(--v2-line);
  text-decoration: none;
  transition: border-color 0.2s;
}

.v2-tool:hover { border-color: rgba(255, 255, 255, 0.35); }

.v2-tool img {
  display: block;
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.v2-tool p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.55;
}

.v2-tool span {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

/* Footer */
.v2-footer {
  padding: 40px clamp(20px, 4vw, 48px) 48px;
  border-top: 1px solid var(--v2-line);
}

.v2-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.45;
}

.v2-footer-legal,
.v2-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.v2-footer a,
.v2-socials a {
  text-decoration: none;
  opacity: 0.85;
}

.v2-footer a:hover,
.v2-socials a:hover { opacity: 1; }

.v2-alt-link {
  opacity: 0.55;
}

/* Book modal */
.book-layer {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.book-layer[hidden] { display: none !important; }

.book-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.78);
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    opacity var(--v2-duration) var(--v2-ease-soft),
    backdrop-filter var(--v2-duration-slow) var(--v2-ease-soft),
    -webkit-backdrop-filter var(--v2-duration-slow) var(--v2-ease-soft);
}

.book-layer.is-open .book-backdrop {
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.book-layer.is-closing .book-backdrop {
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition-duration: var(--v2-duration-fast);
}

.book-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
  height: min(86vh, 860px);
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 1px solid var(--v2-line);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.968);
  transition:
    opacity var(--v2-duration) var(--v2-ease-soft),
    transform var(--v2-duration-slow) var(--v2-ease-soft);
  will-change: transform, opacity;
}

.book-layer.is-open .book-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.book-layer.is-closing .book-panel {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.976);
  transition-duration: var(--v2-duration-fast);
}

.book-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--v2-line);
}

.book-bar p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.book-close {
  border: 1px solid var(--v2-line);
  background: none;
  color: inherit;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.book-close:hover {
  background: #fff;
  color: #121212;
  border-color: #fff;
}

.book-panel iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #0a0a0b;
}

/* Watch v2 */
.v2-watch-body .film-player,
.v2-watch-body .film-player * {
  cursor: auto;
}

.v2-watch-page {
  padding: 100px clamp(20px, 4vw, 48px) 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.v2-watch-hero h1 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.v2-watch-lead {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.62;
}

.v2-watch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 28px;
}

.v2-cta-btn {
  border: 1px solid var(--v2-line);
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.v2-cta-btn:hover {
  background: #fff;
  color: #121212;
}

.v2-watch-library {
  padding-top: 48px;
}

.v2-watch-body .film-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.v2-watch-body .film-filter {
  border: 1px solid var(--v2-line);
  background: none;
  color: inherit;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.v2-watch-body .film-filter.is-on,
.v2-watch-body .film-filter[aria-pressed="true"] {
  background: #fff;
  color: #121212;
  border-color: #fff;
}

.v2-watch-body .film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.v2-watch-body .film-card h2 {
  margin: 12px 0 0;
  font-family: var(--v2-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.v2-watch-body .film-card p {
  margin: 4px 0 0;
  font-size: 11px;
  opacity: 0.45;
  letter-spacing: 0.06em;
}

.v2-watch-body .film-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--v2-line);
  background: #111;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.v2-watch-body .film-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.25s, transform 0.4s var(--v2-ease);
}

.v2-watch-body .film-thumb:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.v2-watch-body .film-play {
  position: absolute;
  inset: auto auto 12px 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.v2-watch-body .film-player {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.v2-watch-body .film-player[hidden] { display: none !important; }

.v2-watch-body .film-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    opacity var(--v2-duration) var(--v2-ease-soft),
    backdrop-filter var(--v2-duration-slow) var(--v2-ease-soft),
    -webkit-backdrop-filter var(--v2-duration-slow) var(--v2-ease-soft);
}

.v2-watch-body .film-player.is-open .film-backdrop {
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.v2-watch-body .film-player.is-closing .film-backdrop {
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition-duration: var(--v2-duration-fast);
}

.v2-watch-body .film-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
  background: #0a0a0a;
  border: 1px solid var(--v2-line);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.968);
  transition:
    opacity var(--v2-duration) var(--v2-ease-soft),
    transform var(--v2-duration-slow) var(--v2-ease-soft);
  will-change: transform, opacity;
}

.v2-watch-body .film-player.is-open .film-dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.v2-watch-body .film-player.is-closing .film-dialog {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.976);
  transition-duration: var(--v2-duration-fast);
}

.v2-watch-body .film-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--v2-line);
}

.v2-watch-body .film-bar p {
  margin: 0;
  flex: 1;
  font-size: 13px;
  font-weight: 600;
}

.v2-watch-body .film-ext {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.7;
  text-decoration: none;
}

.v2-watch-body .film-ext:hover { opacity: 1; }

.v2-watch-body .film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.v2-watch-body .film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.v2-menu-link.is-current {
  opacity: 1 !important;
}

@media (max-width: 960px) {
  .v2-watch-body .film-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .v2-watch-body .film-grid { grid-template-columns: 1fr; }
  .v2-watch-body .film-player { padding: 0; }
  .v2-watch-body .film-dialog {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    border: 0;
  }
  .v2-watch-body .film-frame { flex: 1; aspect-ratio: auto; }
}

/* RTL */
html[dir="rtl"] .book-bar p { letter-spacing: 0.02em; }

/* Responsive */
@media (max-width: 960px) {
  .v2-menu-sheet { width: 100%; border-left: 0; }
}

@media (max-width: 720px) {
  .v2-show-actions {
    flex-direction: column;
    gap: 16px;
  }

  .v2-show-bar {
    flex-wrap: wrap;
  }

  .v2-tools-grid { grid-template-columns: 1fr; }

  .book-layer { padding: 0; }

  .book-panel {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .v2-show-img,
  .v2-show-copy,
  .v2-menu-sheet,
  .v2-menu-backdrop,
  .v2-menu-link,
  .v2-menu-foot,
  .v2-menu-bars i,
  .book-backdrop,
  .book-panel,
  .v2-watch-body .film-backdrop,
  .v2-watch-body .film-dialog { transition: none; }
  .v2-show-img { transform: none; }
  .v2-menu-link,
  .v2-menu-foot,
  .v2-menu-top { opacity: 1; transform: none; }
  .v2-menu-panel.is-open .v2-menu-sheet { transform: none; }
  .book-panel,
  .v2-watch-body .film-dialog { opacity: 1; transform: none; }
}
