.short-video-detail .short-video-layout {
  min-height: 60vh;
}

.short-player-wrap {
  min-height: 100%;
}

.short-video-player {
  width: min(360px, 90vw);
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.short-video-player .video-js,
.short-video-player .ratio {
  width: 100%;
  height: 100%;
}

.short-video-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}


.short-nav-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  color: #374151;
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.short-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.short-nav-btn.disabled,
.short-nav-btn.disabled:hover {
  opacity: 0.4;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .short-video-layout-compact {
    margin-top: -12px;
  }

  .short-video-detail .short-video-layout {
    min-height: auto;
  }

  .short-video-nav {
    flex-direction: row;
  }

  .short-video-detail .short-player-wrap {
    margin-top: -10px;
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .short-player-wrap {
    height: 100%;
  }
}
