.videoPage {
  min-height: 100vh;
  padding: 3rem;
  color: #eefaff;
  background:
    radial-gradient(circle at 18% 18%, rgba(197, 106, 26, 0.12), transparent 26%),
    radial-gradient(circle at 78% 10%, rgba(224, 4, 11, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 5, 7, 0.94), rgba(18, 7, 9, 0.96));
}

.videoPage__hero {
  width: min(1060px, 100%);
  margin: 0 auto clamp(1.5rem, 4vw, 2.6rem);
  text-align: center;
}

.videoPage__eyebrow {
  color: #f08a24;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.videoPage__title {
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1;
}

.videoPage__description {
  width: min(720px, 100%);
  margin: 1rem auto 0;
  color: rgba(238, 250, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.videoPage__player {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.videoPage__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(197, 106, 26, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 106, 26, 0.16), transparent 32%),
    rgba(18, 12, 11, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.videoPage__frame--vertical {
  width: min(430px, 100%);
  max-width: 430px;
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 50% 8%, rgba(197, 106, 26, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(20, 3, 6, 0.96), rgba(5, 5, 6, 0.98));
}

.videoPage__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.videoPage__empty,
.videoPage__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 1.5rem;
  color: rgba(238, 250, 255, 0.72);
  text-align: center;
}

.videoPage__fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, #f08a24, #e0040b);
}

.videoPage__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
}

.videoPage__thumb {
  min-height: 6rem;
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.videoPage__thumb:hover,
.videoPage__thumb--active {
  transform: translateY(-2px);
  border-color: rgba(240, 138, 36, 0.54);
  background: rgba(224, 4, 11, 0.16);
}

.videoPage__thumbMedia {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background:
    radial-gradient(circle at top, rgba(240, 138, 36, 0.24), transparent 42%),
    rgba(5, 5, 6, 0.88);
}

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

.videoPage__thumbIcon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #f08a24, #e0040b);
}

.videoPage__thumbBody {
  min-width: 0;
  display: grid;
  gap: 0.3rem;
}

.videoPage__thumbPlatform {
  color: #f08a24;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.videoPage__thumbBody strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 620px) {
  .videoPage {
    padding: 6.2rem 1rem 2rem;
  }

  .videoPage__thumbs {
    grid-template-columns: 1fr;
  }

  .videoPage__frame--vertical {
    width: min(100%, 360px);
  }
}
