/* === Posting: Reels (preto + primário) — reforço no topo === */
html:has(body.videos-page) {
  background-color: #000000 !important;
  background: #000000 !important;
}
/* ========================================
   Hype — Videos (Reels) — página imersiva
   ======================================== */

html {
  height: 100%;
}

body.videos-page {
  background-color: #000000 !important;
  background: #000000 !important;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100%;
}

/*
  Container principal: videos.html — <main class="videos-root"> envolve #videoFeed.videos-feed.
  Desktop: altura total; mobile: calc(100vh - 70px) conforme barra inferior fixa.
*/
body.videos-page .videos-root {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

body.videos-page .videos-back {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
}

/* Botão de volume (estilo Instagram) */
body.videos-page .video-volume-btn {
  position: absolute;
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  right: 14px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
}
body.videos-page .video-volume-btn i {
  font-size: 18px;
}
body.videos-page .video-volume-btn:active {
  transform: scale(0.96);
}

body.videos-page .videos-feed {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Gesto principal no mobile: scroll vertical (evita “travadas” com toques no vídeo) */
  touch-action: pan-y;
  background: transparent;
  margin: 0;
  padding: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

/* Barra inferior: preto, ícones brancos, ativo = azul Posting */
body.videos-page .bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: #000000;
  border-top: 1px solid var(--posting-border, #2f3336);
  color: #ffffff;
  box-shadow: none;
}
body.videos-page .bottom-nav-item {
  color: #ffffff !important;
}
body.videos-page .bottom-nav-item .icon,
body.videos-page .bottom-nav-item .icon i {
  color: #ffffff !important;
}
body.videos-page .bottom-nav-item.active {
  color: var(--primary-color, #3D56F1) !important;
}
body.videos-page .bottom-nav-item.active .icon,
body.videos-page .bottom-nav-item.active .icon i {
  color: var(--primary-color, #3D56F1) !important;
}
body.videos-page .bottom-nav-item.active > span:not(.icon):not(.bottom-nav-fab-inner) {
  color: var(--primary-color, #3D56F1) !important;
}
body.videos-page .bottom-nav-fab-inner {
  background: var(--primary-color, #3D56F1);
  color: #ffffff !important;
  border: 2px solid #000000;
  box-shadow: none;
}
body.videos-page .bottom-nav-fab-inner i {
  color: #ffffff !important;
}
body.videos-page .videos-feed::-webkit-scrollbar {
  display: none;
}

/*
  Cada slide: mesma altura útil que o main (controles nativos ficam dentro desta caixa, acima da nav).
  O <video> continua absolute em relação a .video-item — o fluxo é limitado pela altura do item, não pelo 100vh cheio.
*/
body.videos-page .video-item {
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex-shrink: 0;
  background: #000;
  box-sizing: border-box;
  touch-action: pan-y;
}

/* Preenchimento tela (desktop + mobile padrão): corte estilo Reels/Instagram */
body.videos-page video.video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  display: block;
  touch-action: pan-y;
  z-index: 0;
}

/* Desktop: evita "zoom" excessivo (mostra o vídeo inteiro, com margens) */
@media (min-width: 1024px) {
  body.videos-page .video-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.videos-page video.video-el {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    max-width: 70vw !important;
    max-height: 70vh !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto;
    border-radius: 12px;
  }
}

/* Camadas: o gradiente é só visual; ações, overlay e toque — controles fora (sem controls) */
body.videos-page .video-gradient {
  pointer-events: none;
  z-index: 1;
}
body.videos-page .video-tap-area {
  pointer-events: auto;
  z-index: 2;
}
body.videos-page .video-seek {
  pointer-events: auto;
  z-index: 6;
}
body.videos-page .video-actions {
  pointer-events: auto;
  z-index: 5;
}
body.videos-page .video-overlay {
  z-index: 4;
}

body.videos-page .video-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.58) 100%
  );
  z-index: 1;
}

/* Indicador play (pausado) + flash curto ao dar play; carregando enquanto bufferiza */
body.videos-page .video-center-hint {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

body.videos-page .video-center-hint__playwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.18s ease, transform 0.2s ease;
}

body.videos-page .video-item--paused .video-center-hint__playwrap {
  opacity: 1;
  transform: scale(1);
}

body.videos-page .video-center-hint--just-played .video-center-hint__playwrap {
  animation: stickReelsPlayNudge 0.48s ease-out forwards;
}

@keyframes stickReelsPlayNudge {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

body.videos-page .video-center-hint__play {
  color: #fff;
  font-size: 32px;
  margin-left: 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55));
}

body.videos-page .video-center-hint__load {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  line-height: 1;
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7));
  transition: opacity 0.15s ease;
}

body.videos-page .video-item--buffering .video-center-hint__load {
  opacity: 0.95;
}
body.videos-page .video-item--buffering:not(.video-item--paused) .video-center-hint__playwrap {
  opacity: 0;
  transform: scale(0.88);
}

/* Desktop: botão "play" central mais sutil/transparente (Reels/Perfil vídeos) */
@media (min-width: 1024px) {
  body.videos-page .video-center-hint__playwrap {
    background: transparent !important; /* remove fundo escuro */
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: none;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  }

  body.videos-page .video-center-hint__play {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 48px; /* ~3rem */
  }

  /* Hover no container (overlay tem pointer-events: none) */
  body.videos-page .video-item:hover .video-center-hint__play {
    color: rgba(255, 255, 255, 1) !important;
  }
  body.videos-page .video-item:hover .video-center-hint__playwrap {
    border-color: rgba(255, 255, 255, 0.8) !important;
  }
}

/* Overlay inferior esquerdo: interativo só no link/texto, resto do toque passa (tap) */
body.videos-page .video-overlay {
  position: absolute;
  left: max(12px, env(safe-area-inset-left, 0px));
  right: 84px;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 4;
  max-width: min(78vw, 520px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.55);
  font-family: var(--font-sans, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
/* Sobe identidade do autor acima da seek bar (não fica por baixo da barra / da bottom nav) */
body.videos-page .video-item:has([data-video-seek]) .video-overlay {
  bottom: max(44px, calc(8px + 32px + env(safe-area-inset-bottom, 0px)));
}
body.videos-page .video-overlay-identity,
body.videos-page .video-caption {
  pointer-events: auto;
}

body.videos-page .video-overlay-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

body.videos-page .video-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

body.videos-page .video-overlay-identity-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

body.videos-page .video-username-line {
  font-weight: 800;
  font-size: clamp(15px, 4.2vw, 17px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* @username — cinza Posting (não e-mail) */
body.videos-page .video-handle-line {
  font-weight: 500;
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.2;
  color: #71767b;
}

body.videos-page .video-caption {
  font-weight: 500;
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1.35;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: pre-wrap;
  max-height: 4.2em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Barra de progresso (seek) — fina, acima do tap; bottom do item já respeita a main-bottom-bar em mobile */
body.videos-page .video-seek {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 max(0px, env(safe-area-inset-right, 0px)) 0 max(0px, env(safe-area-inset-left, 0px));
}
body.videos-page .video-seek__hit {
  min-height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 2px 3px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  user-select: none;
}
body.videos-page .video-seek__bar {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
body.videos-page .video-seek__fill {
  height: 100%;
  width: 0%;
  background: #3D56F1 !important;
  box-shadow: 0 0 6px rgba(29, 155, 240, 0.4);
  border-radius: inherit;
  min-width: 0;
}

/* Coluna de ações: ícones brancos com sombra (leitura sobre qualquer vídeo) */
body.videos-page .video-actions {
  position: absolute;
  right: max(10px, env(safe-area-inset-right, 0px));
  bottom: max(84px, calc(64px + env(safe-area-inset-bottom, 0px)));
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

body.videos-page .video-action-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

body.videos-page .video-action-count {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  min-width: 22px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

body.videos-page .video-action {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.videos-page .video-action i {
  font-size: 22px;
  line-height: 1;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}
body.videos-page .video-action:active {
  transform: scale(0.96);
}

body.videos-page .video-action.is-liked i {
  color: #ff2d55;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

body.videos-page .video-action.is-saved i,
body.videos-page .video-action.saved i {
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

body.videos-page .video-action--owner {
  opacity: 0.9;
}
body.videos-page .video-action--owner:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.22);
}

/* Fade-out ao excluir */
body.videos-page .video-item.video-item--fadeout {
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

/* Drawer de comentários (direita) */
body.videos-page .video-comments-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.videos-page .video-comments-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(420px, 92vw);
  background: rgba(14, 14, 16, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  z-index: 1110;
  transform: translateX(100%);
  transition: transform 200ms ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.videos-page .video-comments-drawer.open {
  transform: translateX(0);
}
body.videos-page .video-comments-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

body.videos-page .video-comments-drawer__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

body.videos-page .video-comments-drawer__title {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
}

body.videos-page .video-comments-drawer__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.videos-page .video-comments-drawer__list {
  flex: 1;
  overflow: auto;
  padding: 12px 14px;
}

body.videos-page .video-comment-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.videos-page .video-comment-item:last-child {
  border-bottom: 0;
}
body.videos-page .video-comment-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
body.videos-page .video-comment-body {
  min-width: 0;
}
body.videos-page .video-comment-author {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  color: #ffffff;
}
body.videos-page .video-comment-text {
  margin-top: 3px;
  font-size: 1.05rem;
  font-weight: 450;
  line-height: 1.4;
  color: #ffffff;
  opacity: 0.95;
  overflow-wrap: anywhere;
}
body.videos-page .video-comments-drawer__composer {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
body.videos-page .video-comments-drawer__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
  outline: none;
  font-size: 1.05rem;
  font-family: inherit;
}

body.videos-page .video-comments-drawer__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  body.videos-page .video-comments-drawer__title {
    font-size: 16px;
  }
  body.videos-page .video-comment-author {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
  }
  body.videos-page .video-comment-text {
    font-size: 1.05rem !important;
    font-weight: 450 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
  }
  body.videos-page .video-comments-drawer__input {
    height: 48px;
    font-size: 1.05rem !important;
  }
  body.videos-page .video-comments-drawer__send {
    width: 48px;
    height: 48px;
  }
}
body.videos-page .video-comments-drawer__send {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tap area para play/pause */
body.videos-page .video-tap-area {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

@media (max-width: 768px) {
  /* Mobile: hierarquia pedida */
  body.videos-page .bottom-nav {
    z-index: 100;
  }

  /* Reels: full-bleed (100vw) — remove qualquer padding/margem lateral */
  body.videos-page,
  body.videos-page .videos-root,
  body.videos-page .videos-feed,
  body.videos-page .video-item {
    width: 100vw !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Reels: tela cheia, mídia atrás da UI; snap vertical */
  body.videos-page video.video-el {
    z-index: 0;
    object-fit: cover;
    object-position: center;
    width: 100vw !important;
    display: block;
  }

  /* Altura útil: 100dvh menos a bottom-nav fixa (evita faixa preta e controles escondidos) */
  body.videos-page .videos-root {
    height: calc(100dvh - var(--bottom-nav-height, 64px));
  }

  body.videos-page .video-item {
    height: calc(100dvh - var(--bottom-nav-height, 64px));
    max-height: calc(100dvh - var(--bottom-nav-height, 64px));
    padding-bottom: 0 !important;
  }

  body.videos-page video.video-el {
    inset: 0;
    height: 100%;
    max-height: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Ações/legenda acima da barra e da safe area */
  body.videos-page .video-actions {
    bottom: max(20px, calc(12px + env(safe-area-inset-bottom, 0px)));
  }

  body.videos-page .video-overlay {
    bottom: max(16px, calc(8px + env(safe-area-inset-bottom, 0px)));
  }
  body.videos-page .video-item:has([data-video-seek]) .video-overlay {
    bottom: max(40px, calc(12px + 32px + env(safe-area-inset-bottom, 0px)));
  }

  body.videos-page .videos-empty {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

body.videos-page .videos-empty {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-content: center;
  padding: 40px 18px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}
body.videos-page .videos-empty__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}
body.videos-page .videos-empty__sub {
  font-size: 14px;
  opacity: 0.85;
}

/* ——— post-detalhes (feed vertical, sem barra inferior) ——— */
body.videos-page.post-detail-reels .post-detail-close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body.videos-page.post-detail-reels .post-detail-close i {
  font-size: 18px;
  line-height: 1;
}

/* Post com foto: mesma área útil do vídeo (largura total, snap alinhada ao de Reels) */
body.videos-page .post-detail-still__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  display: block;
  z-index: 0;
  box-sizing: border-box;
  touch-action: pan-y;
}

/* Sem bottom-nav: slide ocupa a viewport completa (mobile) */
@media (max-width: 768px) {
  body.videos-page.post-detail-reels .videos-root,
  body.videos-page.post-detail-reels .video-item {
    height: 100dvh !important;
    max-height: 100dvh !important;
  }

  body.videos-page.post-detail-reels .post-detail-still__img {
    object-fit: cover;
    width: 100vw !important;
  }
}

/* Sem bottom-nav: ações e legenda mais próximas da borda */
body.videos-page.post-detail-reels .video-actions {
  bottom: 24px;
}
body.videos-page.post-detail-reels .video-overlay {
  bottom: 20px;
}

/* Desktop: altura plena (post-detalhes.html não exibe barra fixa) */
body.videos-page.post-detail-reels .videos-root {
  height: 100vh;
  height: 100dvh;
}

