nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 2px solid #00f5ff;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav a {
  color: #00f5ff;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff006e;
}

nav a.active {
  color: #ffbe0b;
  font-weight: bold;
}

.schedule-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.schedule-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-content {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border: 3px solid #00f5ff;
  border-radius: 10px;
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
  font-family: 'VT323', monospace;
}

.schedule-header {
  background: #00f5ff;
  color: #0a0a0a;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #ff006e;
}

.schedule-header h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 2px;
}

.schedule-close {
  background: #ff006e;
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'VT323', monospace;
  line-height: 1;
  transition: all 0.3s;
}

.schedule-close:hover {
  background: #ffbe0b;
  transform: rotate(90deg);
}

.schedule-info {
  background: rgba(0, 245, 255, 0.1);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #00f5ff;
}

.schedule-week {
  font-size: 1.5rem;
  color: #ffbe0b;
  font-weight: bold;
}

.schedule-time {
  font-size: 1.5rem;
  color: #00f5ff;
}

.schedule-grid {
  padding: 20px;
}

.schedule-loading {
  text-align: center;
  color: #00f5ff;
  font-size: 1.5rem;
  padding: 40px;
}

.schedule-slot {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #333;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.schedule-slot:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: #00f5ff;
  transform: translateX(5px);
}

.schedule-slot.now-playing {
  background: rgba(255, 0, 110, 0.2);
  border: 3px solid #ff006e;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.schedule-slot.now-playing .slot-time {
  color: #ff006e;
  font-weight: bold;
}

.schedule-slot.commercial-break {
  background: rgba(255, 190, 11, 0.1);
  border-color: #ffbe0b;
}

.slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.slot-time {
  font-size: 1.3rem;
  color: #00f5ff;
  font-weight: bold;
}

.slot-duration {
  font-size: 1.1rem;
  color: #888;
}

.slot-show {
  font-size: 1.4rem;
  color: #ffbe0b;
  margin-bottom: 5px;
  font-weight: bold;
}

.slot-episode {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.4;
}

.slot-badge {
  display: inline-block;
  background: #ff006e;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-left: 10px;
  font-weight: bold;
}

.slot-badge.live {
  background: #ff006e;
  animation: pulse 2s infinite;
}

.slot-badge.ads {
  background: #ffbe0b;
  color: #0a0a0a;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
