/* ==========================================================================
   STAACOR NEWS // MOBILE-OPTIMIZED HOLO-PLAYER & THEATER CSS
   ========================================================================== */

.holo-player-section {
  margin-bottom: 35px;
}

.holo-theater-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  background: rgba(8, 12, 20, 0.95);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--card-shadow);
}

@media (min-width: 980px) {
  .holo-theater-container {
    grid-template-columns: 1fr 340px;
    padding: 20px;
    gap: 20px;
  }
}

.holo-screen-wrap {
  display: flex;
  flex-direction: column;
  background: #020408;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.15);
}

.holo-canvas-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.holo-canvas-wrapper canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Holo Player HUD Controls Bar */
.holo-hud-controls {
  background: rgba(10, 15, 24, 0.98);
  border-top: 1px solid rgba(0, 240, 255, 0.3);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
}

@media (min-width: 640px) {
  .holo-hud-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }
}

.hud-left-group, .hud-right-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hud-btn {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--cyan-glow);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  min-height: 34px;
}

.hud-btn:hover, .hud-btn:active {
  background: var(--cyan-glow);
  color: #000;
}

.hud-btn.active {
  background: var(--cyan-glow);
  color: #000;
  font-weight: bold;
}

.hud-select {
  background: rgba(6, 10, 16, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 8px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  min-height: 34px;
}

.hud-select:focus {
  border-color: var(--cyan-glow);
}

/* Holo Channel Playlist Sidebar */
.holo-channels-sidebar {
  display: flex;
  flex-direction: column;
  background: rgba(6, 10, 16, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 6px;
  padding: 12px;
  max-height: 280px;
  overflow-y: auto;
}

@media (min-width: 980px) {
  .holo-channels-sidebar {
    max-height: 800px;
    padding: 15px;
  }
}

.sidebar-header {
  font-family: var(--font-header);
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header span {
  color: var(--amber-glow);
  font-size: 0.7rem;
  font-family: var(--font-mono);
}

.channel-card {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(14, 21, 33, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.channel-card:hover, .channel-card:active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--cyan-glow);
}

.channel-card.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--cyan-glow);
  border-left: 3px solid var(--cyan-glow);
}

.channel-thumb {
  width: 75px;
  height: 48px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

@media (min-width: 480px) {
  .channel-thumb {
    width: 90px;
    height: 56px;
  }
}

.channel-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.channel-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--amber-glow);
  margin-bottom: 2px;
}

.channel-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-duration {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Video Details & Transcript Accordion */
.video-details-card {
  margin-top: 10px;
  background: rgba(10, 15, 24, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 6px;
  padding: 12px;
}

@media (min-width: 768px) {
  .video-details-card {
    margin-top: 15px;
    padding: 16px;
  }
}

.video-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.video-cur-title {
  font-family: var(--font-header);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .video-cur-title {
    font-size: 1.2rem;
  }
}

.video-cur-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.transcript-box {
  background: #04060a;
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 4px;
  padding: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--emerald-glow);
  max-height: 120px;
  overflow-y: auto;
}

.transcript-line {
  margin-bottom: 3px;
}
