:root {
  --vt-bg: #140b2e;
  --vt-bg-soft: #1c1140;
  --vt-bg-elevated: #241752;
  --vt-accent: #7c3aed;
  --vt-accent-light: #a78bfa;
  --vt-accent-dark: #5b21b6;
  --vt-text: #f4f1fb;
  --vt-text-dim: #b7aed6;
  --vt-text-faint: #85799f;
  --vt-border: rgba(167, 139, 250, 0.18);
  --vt-border-strong: rgba(167, 139, 250, 0.4);
  --vt-shadow: 0 20px 60px rgba(7, 3, 22, 0.55);
  --vt-radius: 18px;
  --vt-radius-sm: 10px;
  --vt-max: 1180px;
  --vt-font:
    -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vt-font);
  background: var(--vt-bg);
  color: var(--vt-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--vt-accent-light);
  text-decoration: none;
}

a:hover {
  color: var(--vt-text);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--vt-text-dim);
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1px solid var(--vt-border);
  padding: 12px 16px;
  text-align: left;
}

th {
  color: var(--vt-text);
  background: var(--vt-bg-soft);
}

td {
  color: var(--vt-text-dim);
}

.vt-wrap {
  max-width: var(--vt-max);
  margin: 0 auto;
  padding: 0 24px;
}

.vt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.vt-btn--primary {
  background: linear-gradient(135deg, var(--vt-accent), #a855f7);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.45);
}

.vt-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.6);
  color: #ffffff;
}

.vt-btn--outline {
  background: transparent;
  color: var(--vt-text);
  border-color: var(--vt-border-strong);
}

.vt-btn--outline:hover {
  border-color: var(--vt-accent-light);
  color: var(--vt-accent-light);
}

.vt-btn--ghost {
  background: transparent;
  color: var(--vt-text-dim);
  border-color: transparent;
  padding-left: 10px;
  padding-right: 10px;
}

.vt-btn--ghost:hover {
  color: var(--vt-text);
}

.vt-btn--small {
  padding: 9px 18px;
  font-size: 13px;
}

.vt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.vt-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: rgba(20, 11, 46, 0.97);
  border-top: 1px solid var(--vt-border);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.vt-cookie.is-hidden {
  transform: translateY(120%);
}

.vt-cookie__inner {
  max-width: var(--vt-max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vt-cookie__text {
  margin: 0;
  color: var(--vt-text-dim);
  font-size: 14px;
  max-width: 640px;
}

.vt-cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vt-header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(20, 11, 46, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vt-border);
}

.vt-header__inner {
  max-width: var(--vt-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vt-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vt-text);
}

.vt-logo__mark {
  width: 30px;
  height: 30px;
  fill: var(--vt-accent-light);
}

.vt-logo__text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vt-logo__accent {
  color: var(--vt-accent-light);
}

.vt-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--vt-border-strong);
  border-radius: 8px;
  cursor: pointer;
}

.vt-nav__toggle span {
  display: block;
  height: 2px;
  margin: 0 7px;
  background: var(--vt-text);
  border-radius: 2px;
}

.vt-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vt-nav__list a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--vt-text-dim);
  font-size: 14.5px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.vt-nav__list a:hover,
.vt-nav__list a.is-active {
  background: var(--vt-bg-elevated);
  color: var(--vt-text);
}

.vt-main {
  min-height: 60vh;
}

.vt-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background: linear-gradient(120deg, #1c1140, #2a1160, #140b2e, #331659);
  background-size: 320% 320%;
  animation: vtHeroShift 18s ease infinite;
}

@keyframes vtHeroShift {
  0% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 100% 60%;
  }
  100% {
    background-position: 0% 40%;
  }
}

.vt-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(124, 58, 237, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(168, 85, 247, 0.28),
      transparent 50%
    );
  pointer-events: none;
}

.vt-hero__inner {
  position: relative;
  max-width: var(--vt-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.vt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--vt-border-strong);
  color: var(--vt-accent-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.vt-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 6px;
}

.vt-hero__lead {
  font-size: 18px;
  color: var(--vt-text-dim);
  max-width: 580px;
}

.vt-hero__price {
  font-size: 15px;
  color: var(--vt-text);
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius-sm);
  padding: 10px 16px;
  width: fit-content;
}

.vt-section {
  padding: 72px 0;
}

.vt-section--alt {
  background: var(--vt-bg-soft);
}

.vt-section__head {
  max-width: 680px;
  margin: 0 0 40px;
}

.vt-section__head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
}

.vt-eyebrow--dim {
  color: var(--vt-text-faint);
  border-color: var(--vt-border);
}

.vt-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.vt-filters__group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: var(--vt-bg-soft);
  border: 1px solid var(--vt-border);
  border-radius: 999px;
}

.vt-filters__group span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--vt-text-dim);
}

.vt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
  perspective: 1400px;
}

.vt-card {
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.vt-card:hover {
  border-color: var(--vt-border-strong);
  box-shadow: var(--vt-shadow);
}

.vt-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vt-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 24, 0) 40%,
    rgba(10, 5, 24, 0.75) 100%
  );
}

.vt-poster__glyph {
  font-size: 108px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: -0.04em;
  z-index: 1;
}

.vt-poster--drama {
  background: linear-gradient(150deg, #1e3a8a, #0b1a4a 70%);
}
.vt-poster--romance {
  background: linear-gradient(150deg, #86198f, #4c1152 70%);
}
.vt-poster--thriller {
  background: linear-gradient(150deg, #7f1d1d, #170303 75%);
}
.vt-poster--fantasy {
  background: linear-gradient(150deg, #065f46, #2e1065 75%);
}
.vt-poster--comedy {
  background: linear-gradient(150deg, #d97706, #7c2d12 75%);
}
.vt-poster--detective {
  background: linear-gradient(150deg, #334155, #0f172a 75%);
}

.vt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(15, 8, 33, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.vt-play:hover {
  background: var(--vt-accent);
  border-color: var(--vt-accent);
  transform: translate(-50%, -50%) scale(1.08);
}

.vt-play__icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  margin-left: 3px;
}

.vt-badge {
  position: absolute;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.vt-badge--free {
  top: 14px;
  left: 14px;
  background: var(--vt-accent);
  color: #ffffff;
}

.vt-badge--format {
  top: 14px;
  right: 14px;
  background: rgba(10, 5, 24, 0.55);
  color: var(--vt-text);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.vt-card__body {
  padding: 20px 20px 22px;
}

.vt-card__title {
  font-size: 17.5px;
  margin-bottom: 4px;
}

.vt-card__meta {
  font-size: 12.5px;
  color: var(--vt-accent-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.vt-card__desc {
  font-size: 14px;
  margin-bottom: 0;
}

.vt-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.vt-feature {
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  padding: 26px;
}

.vt-feature h3 {
  font-size: 18px;
  color: var(--vt-text);
}

.vt-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.vt-feature__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--vt-accent-light);
}

.vt-steps {
  counter-reset: vt-step;
  display: grid;
  gap: 18px;
}

.vt-step {
  position: relative;
  padding: 24px 24px 24px 68px;
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
}

.vt-step::before {
  counter-increment: vt-step;
  content: counter(vt-step);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vt-accent), #a855f7);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.vt-step h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.vt-genre-block {
  border-top: 1px solid var(--vt-border);
  padding: 44px 0;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(220px, 320px) 1fr;
}

.vt-genre-block:first-of-type {
  border-top: none;
}

.vt-genre-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--vt-text-faint);
  margin-bottom: 12px;
}

.vt-genre-swatch {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.vt-genre-swatch--drama {
  background: linear-gradient(150deg, #1e3a8a, #0b1a4a);
}
.vt-genre-swatch--romance {
  background: linear-gradient(150deg, #86198f, #4c1152);
}
.vt-genre-swatch--thriller {
  background: linear-gradient(150deg, #7f1d1d, #170303);
}
.vt-genre-swatch--fantasy {
  background: linear-gradient(150deg, #065f46, #2e1065);
}
.vt-genre-swatch--comedy {
  background: linear-gradient(150deg, #d97706, #7c2d12);
}
.vt-genre-swatch--detective {
  background: linear-gradient(150deg, #334155, #0f172a);
}

.vt-genre-block__stats {
  font-size: 13.5px;
  color: var(--vt-text-faint);
}

.vt-genre-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.vt-tag {
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  font-size: 13px;
  color: var(--vt-text-dim);
}

.vt-topics {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
}

.vt-topics li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  color: var(--vt-text-dim);
}

.vt-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vt-accent-light);
}

.vt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.vt-plan {
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vt-plan--highlight {
  border-color: var(--vt-accent-light);
  box-shadow:
    0 0 0 1px var(--vt-accent-light),
    var(--vt-shadow);
  position: relative;
}

.vt-plan__badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: linear-gradient(135deg, var(--vt-accent), #a855f7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.vt-plan__price {
  font-size: 34px;
  font-weight: 800;
  color: var(--vt-text);
}

.vt-plan__price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--vt-text-faint);
}

.vt-plan__list {
  display: grid;
  gap: 9px;
  margin: 6px 0 10px;
}

.vt-plan__list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--vt-text-dim);
}

.vt-plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--vt-accent-light);
}

.vt-table-wrap {
  overflow-x: auto;
  border-radius: var(--vt-radius);
  border: 1px solid var(--vt-border);
}

.vt-table-wrap table {
  border: none;
}

.vt-table-wrap th,
.vt-table-wrap td {
  border-color: var(--vt-border);
}

.vt-pay-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.vt-pay {
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius-sm);
  padding: 18px 20px;
}

.vt-pay h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.vt-pay p {
  margin: 0;
  font-size: 13.5px;
}

.vt-faq {
  display: grid;
  gap: 12px;
}

.vt-faq-group {
  margin-bottom: 36px;
}

.vt-faq-group h2 {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--vt-accent-light);
}

.vt-faq-item {
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius-sm);
  background: var(--vt-bg-elevated);
  overflow: hidden;
}

.vt-faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--vt-text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vt-faq-item summary::-webkit-details-marker {
  display: none;
}

.vt-faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--vt-accent-light);
  flex-shrink: 0;
}

.vt-faq-item[open] summary::after {
  content: "\2212";
}

.vt-faq-item__body {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--vt-text-dim);
}

.vt-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.vt-person {
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  padding: 24px;
}

.vt-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--vt-accent), #a855f7);
  margin-bottom: 14px;
}

.vt-person h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.vt-person__role {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--vt-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}

.vt-timeline {
  display: grid;
  gap: 18px;
}

.vt-timeline__item {
  padding: 20px 24px;
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
}

.vt-award {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius-sm);
  margin-bottom: 12px;
}

.vt-award__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-award__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--vt-accent-light);
}

.vt-contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 36px;
}

.vt-contact-card {
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  padding: 26px;
}

.vt-contact-card h3 {
  font-size: 16px;
}

.vt-contact-card address {
  font-style: normal;
  font-size: 14.5px;
  color: var(--vt-text-dim);
}

.vt-contact-card address p {
  margin: 0 0 6px;
}

.vt-contact-routes {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.vt-route {
  padding: 16px 18px;
  border-radius: var(--vt-radius-sm);
  border: 1px solid var(--vt-border);
}

.vt-route h4 {
  margin: 0 0 4px;
  font-size: 14.5px;
  color: var(--vt-text);
}

.vt-route p {
  margin: 0;
  font-size: 13.5px;
}

.vt-form {
  display: grid;
  gap: 18px;
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  padding: 28px;
}

.vt-form__row {
  display: grid;
  gap: 8px;
}

.vt-form label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vt-text);
}

.vt-form input,
.vt-form select,
.vt-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--vt-radius-sm);
  border: 1px solid var(--vt-border-strong);
  background: var(--vt-bg-soft);
  color: var(--vt-text);
  font-family: inherit;
  font-size: 14.5px;
}

.vt-form textarea {
  resize: vertical;
  min-height: 130px;
}

.vt-form input:focus,
.vt-form select:focus,
.vt-form textarea:focus {
  outline: none;
  border-color: var(--vt-accent-light);
}

.vt-form__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vt-legal {
  max-width: 820px;
}

.vt-legal h2 {
  font-size: 22px;
  margin-top: 44px;
  color: var(--vt-accent-light);
}

.vt-legal h3 {
  font-size: 17px;
  margin-top: 26px;
}

.vt-legal ul {
  display: grid;
  gap: 8px;
  margin: 0 0 1em;
}

.vt-legal ul li {
  padding-left: 18px;
  position: relative;
  color: var(--vt-text-dim);
}

.vt-legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vt-accent-light);
}

.vt-legal .vt-updated {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--vt-bg-elevated);
  border: 1px solid var(--vt-border);
  font-size: 13px;
  color: var(--vt-text-faint);
  margin-bottom: 20px;
}

.vt-final {
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(124, 58, 237, 0.25),
      transparent 60%
    ),
    var(--vt-bg-soft);
}

.vt-final h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}

.vt-final .vt-cta-row {
  justify-content: center;
}

.vt-footer {
  border-top: 1px solid var(--vt-border);
  background: #0f0924;
  padding: 60px 0 0;
}

.vt-footer__inner {
  max-width: var(--vt-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.vt-footer__about {
  font-size: 13.5px;
  max-width: 280px;
  margin-top: 14px;
}

.vt-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.vt-social__item {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--vt-border);
  font-size: 12.5px;
  color: var(--vt-text-faint);
}

.vt-footer__heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vt-text-faint);
  margin-bottom: 16px;
}

.vt-footer__list {
  display: grid;
  gap: 10px;
}

.vt-footer__list a {
  font-size: 14px;
  color: var(--vt-text-dim);
}

.vt-footer__address p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--vt-text-dim);
}

.vt-footer__bottom {
  margin-top: 48px;
  border-top: 1px solid var(--vt-border);
  padding: 22px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--vt-text-faint);
}

@media (max-width: 900px) {
  .vt-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .vt-genre-block {
    grid-template-columns: 1fr;
  }

  .vt-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .vt-nav__toggle {
    display: flex;
  }

  .vt-nav {
    width: 100%;
    order: 3;
  }

  .vt-nav__list {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 12px;
  }

  .vt-nav__list.is-open {
    display: flex;
  }

  .vt-nav__list a {
    display: block;
  }

  .vt-footer__inner {
    grid-template-columns: 1fr;
  }

  .vt-hero {
    padding: 64px 0 56px;
  }

  .vt-section {
    padding: 52px 0;
  }
}

.vt-poster__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-hero__media {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(5, 2, 16, 0.55);
}

.vt-hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.vt-figure {
  margin: 0 0 34px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vt-figure img {
  display: block;
  width: 100%;
  height: auto;
}
