/* === Schedule Card - "Coming Up" Interstitial === */

.schedule-card {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: #0a0a1a;
}

.schedule-card.hidden {
  display: none;
}

.sc-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1e 40%, #1a0a15 100%);
}

/* === Header === */
.sc-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, #1a1a2e 0%, rgba(200, 0, 26, 0.15) 50%, #1a1a2e 100%);
  border-bottom: 2px solid #c8001a;
}

.sc-header-accent {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8001a, transparent);
}

.sc-header-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2rem;
}

.sc-emblem {
  font-size: 2.5rem;
  color: #e8d44d;
  text-shadow: 0 0 15px rgba(232, 212, 77, 0.4);
}

.sc-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #e8d44d;
  letter-spacing: 0.25em;
}

.sc-subtitle {
  font-size: 0.65rem;
  color: #c8001a;
  letter-spacing: 0.2em;
  margin-top: 0.2rem;
}

/* === Body === */
.sc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 3rem;
  overflow: hidden;
}

.sc-coming-up {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: #c8001a;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 0, 26, 0.3);
}

/* === Lineup === */
.sc-lineup {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
}

.sc-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.sc-item-icon {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

.sc-item-title {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc-item-duration {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  min-width: 3rem;
  text-align: right;
}

.sc-item-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #00ff41;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid rgba(0, 255, 65, 0.3);
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

/* Next item - highlighted */
.sc-item-next {
  background: rgba(200, 0, 26, 0.1);
  border-color: rgba(200, 0, 26, 0.4);
  animation: sc-pulse 2s ease-in-out infinite;
}

.sc-item-next .sc-item-icon {
  color: #00ff41;
  font-size: 0.9rem;
}

.sc-item-next .sc-item-title {
  color: #fff;
  font-weight: bold;
}

.sc-item-next .sc-item-duration {
  color: #e8d44d;
}

/* Past items - dimmed */
.sc-item-past {
  opacity: 0.4;
}

.sc-item-past .sc-item-icon {
  color: rgba(255, 255, 255, 0.15);
}

@keyframes sc-pulse {
  0%, 100% { border-color: rgba(200, 0, 26, 0.4); }
  50% { border-color: rgba(200, 0, 26, 0.8); box-shadow: 0 0 10px rgba(200, 0, 26, 0.15); }
}

/* === Footer === */
.sc-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(200, 0, 26, 0.3);
}

.sc-footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 0, 26, 0.3), transparent);
}

.sc-footer-text {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.15em;
  white-space: nowrap;
}
