/* DenFur TV Videos page - shared theme panels */

.df-videos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 14px;
  align-items: start;
}

.df-videos-player-body {
  padding: 0;
}

.df-videos-stage {
  background: #05080f;
  aspect-ratio: 16 / 9;
}

.df-videos-stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05080f;
}

.df-videos-list {
  display: grid;
  gap: 8px;
  max-height: min(70vh, 720px);
  overflow: auto;
  padding: 10px !important;
}

.df-videos-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(143, 164, 200, 0.22);
  border-radius: 6px;
  background: rgba(8, 12, 22, 0.55);
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.df-videos-card:hover,
.df-videos-card:focus {
  border-color: rgba(143, 164, 200, 0.5);
  background: rgba(61, 95, 154, 0.14);
  outline: none;
}

.df-videos-card.on {
  border-color: rgba(143, 164, 200, 0.65);
  background: rgba(61, 95, 154, 0.22);
  box-shadow: 0 0 0 1px rgba(61, 95, 154, 0.2);
}

.df-videos-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #05080f;
}

.df-videos-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.df-videos-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  margin: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-40%, -50%);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
  opacity: 0.92;
}

.df-videos-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.df-videos-copy strong {
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.df-videos-copy em {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .df-videos-layout {
    grid-template-columns: 1fr;
  }
  .df-videos-list {
    max-height: none;
  }
}
