/* Current series hero enhancements */

.current-hero {
  margin-bottom: 20px;
}

.current-hero .dash-hero-title-line2 {
  font-weight: 500;
}

/* Season meta row */

.current-series-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.current-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-meta-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9fafb;
}

/* Season status placeholder (before season starts) */

.current-status-placeholder {
  background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.12), transparent);
}

.current-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 10px;
}

.current-placeholder-icon {
  font-size: 3rem;
  opacity: 0.9;
  width: 150px;
}

.current-placeholder-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.current-placeholder-text {
  font-size: 0.92rem;
  color: #e5e7eb;
  line-height: 1.45;
  margin: 0;
}

.current-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.dash-btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: none;
}

.dash-btn-secondary:hover {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.7);
}

/* Active season tabs (uncomment when season starts) */

.current-tabs-container {
  margin-top: 8px;
}

.current-tabs-nav {
  display: flex;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  margin-bottom: 16px;
}

.current-tab-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: none;
  color: #9ca3af;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.current-tab-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ef4444;
  transition: all 0.2s ease;
  transform: translateX(-50%);
}

.current-tab-btn:hover {
  color: #f9fafb;
  background: rgba(248, 113, 113, 0.1);
}

.current-tab-btn.active {
  color: #fef2f2;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(185, 28, 28, 0.15));
}

.current-tab-btn.active::before {
  width: 80%;
}

.current-tab-icon {
  font-size: 1.1rem;
}

.current-tabs-content {
  position: relative;
}

.current-tab-pane {
  display: none;
}

.current-tab-pane.active {
  display: block;
}

.current-iframe {
  width: 100%;
  height: 550px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #1a1f2e;
}

/* Responsive */

@media (max-width: 768px) {
  .current-series-meta {
    flex-direction: column;
    gap: 12px;
  }

  .current-placeholder-actions {
    flex-direction: column;
    width: 100%;
  }

  .dash-btn {
    justify-content: center;
  }

  .current-tabs-nav {
    flex-direction: column;
  }

  .current-iframe {
    height: 450px;
  }
}

@media (max-width: 520px) {
  .current-placeholder-icon {
    font-size: 2.5rem;
  }

  .current-placeholder-title {
    font-size: 1.1rem;
  }
}
