/* ══════════════════════════════════════════
   HIGHLIGHTS + video
══════════════════════════════════════════ */

/* ── TOP HIGHLIGHTS ──────────────────────────────────── */

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.highlight-item {
  display: grid;
  grid-template-columns: 44px 56px 1fr;
  align-items: center;
  background: var(--coal-card);
  border: 1px solid var(--coal-border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition:
    background var(--t-base),
    border-color var(--t-base),
    transform var(--t-fast);
}
.highlight-item:hover {
  background: var(--coal-hover);
  border-color: var(--grey-lo);
  transform: translateX(3px);
}
.highlight-item:active {
  transform: scale(0.99);
}

.hl-play {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid var(--coal-border);
  transition: background var(--t-base);
}
.highlight-item:hover .hl-play {
  background: var(--accent-glow);
}

.hl-play-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t-accent),
    transform var(--t-base);
}
.highlight-item:hover .hl-play-btn {
  transform: scale(1.12);
}
.hl-play-btn svg {
  width: 10px;
  height: 10px;
  fill: #111;
  margin-left: 2px;
}

/* .hl-league-icon used in index2.html; .hl-league in index_.html — same thing */
.hl-league-icon,
.hl-league {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  font-size: var(--fs-earth);
  border-right: 1px solid var(--coal-border);
}

.hl-body {
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hl-tag,
.hl-league-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-moon);
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
  transition: color var(--t-accent);
}
.hl-title {
  font-family: var(--font-display);
  font-size: var(--fs-mercury);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

/* ── HIGHLIGHTS SIDEBAR ──────────────────────────────── */

.hl-sidebar-list {
  display: flex;
  flex-direction: column;
}

.hl-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--coal-border);
  cursor: pointer;
  transition: background var(--t-base);
}
.hl-sidebar-item:last-child {
  border-bottom: none;
}
.hl-sidebar-item:hover {
  background: var(--coal-hover);
}

.hl-sidebar-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 48px;
  flex-shrink: 0;
  border-right: 1px solid var(--coal-border);
}
.hl-sidebar-item:hover .hl-play-btn {
  transform: scale(1.12);
}

.hl-sidebar-body {
  padding: 10px 12px;
  min-width: 0;
}
.hl-sidebar-title {
  font-family: var(--font-display);
  font-size: var(--fs-mercury);
  letter-spacing: 0.03em;
  color: var(--white);
}

/* ── TOP HIGHLIGHTS FULL-WIDTH ───────────────────────── */

.hl-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: var(--gap-xl);
}

.hl-full-card {
  background: var(--coal-card);
  border: 1px solid var(--coal-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition:
    border-color var(--t-base),
    transform var(--t-fast);
  animation: fadeUp 0.5s ease both;
}
.hl-full-card:hover {
  border-color: var(--grey-lo);
  transform: translateY(-3px);
}

.hl-full-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hl-full-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.62);
  transition:
    filter 0.3s ease,
    transform 0.4s ease;
}
.hl-full-card:hover .hl-full-thumb img {
  filter: brightness(0.85);
  transform: scale(1.04);
}

.hl-full-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hl-full-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(17, 16, 16, 0.75);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t-base),
    border-color var(--t-accent),
    transform var(--t-base);
}
.hl-full-card:hover .hl-full-play-btn {
  background: var(--accent);
  transform: scale(1.12);
}
.hl-full-play-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  margin-left: 3px;
  transition: fill var(--t-base);
}
.hl-full-card:hover .hl-full-play-btn svg {
  fill: #111;
}

.hl-full-body {
  padding: 14px 16px;
}
.hl-full-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
  transition: color var(--t-accent);
}
.hl-full-title {
  font-family: var(--font-display);
  font-size: var(--fs-earth);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
  transition: color var(--t-base);
}
.hl-full-card:hover .hl-full-title {
  color: var(--accent);
}

.hl-full-thumb--empty {
  background: var(--coal-card);
  aspect-ratio: 16 / 9;
}

/* ── VIDEO PAGE ──────────────────────────────────────── */

.video-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 28px;
  width: fit-content;
  transition:
    background var(--t-base),
    color var(--t-base),
    border-color var(--t-accent);
}
.video-back:hover {
  background: var(--accent);
  color: #111;
}

.video-player-wrap {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.video-player-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-info {
  max-width: 1100px;
  margin: 20px auto 0;
}
.video-info-league {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  transition: color var(--t-accent);
}
.video-info-title {
  font-family: var(--font-display);
  font-size: var(--fs-neptune);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

@media (max-width: 1000px) {
  .hl-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hl-full-grid {
    grid-template-columns: 1fr;
  }
}
