:root {
  --bg-dark: #0f172a;
  --card-bg: #1e293b;
  --card-border: rgba(255, 255, 255, 0.08);
  --accent-cyan: #22d3ee;
  --accent-red: #ef4444;
  --text-muted: #94a3b8;
}

.radiomcj-schedule .no-ar-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  max-width: 100%;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* Badge ON AIR */
.radiomcj-schedule .on-air-badge {
  background: transparent;
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 50rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.radiomcj-schedule .on-air-badge i {
  font-size: 0.9rem;
}

/* Avatar com status ao vivo */
.radiomcj-schedule .host-avatar {
  width: 160px;
  height: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.radiomcj-schedule .host-avatar-default {
  width: 160px;
  height: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 3px solid var(--accent-cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--accent-cyan);
}

.radiomcj-schedule .live-dot {
  width: 16px;
  height: 16px;
  background: #22c55e;
  border: 3px solid var(--card-bg);
  border-radius: 50%;
  position: absolute;
  bottom: 8px;
  right: 8px;
  box-shadow: 0 0 8px #22c55e;
}

.radiomcj-schedule .program-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0.75rem 0 0.25rem;
  letter-spacing: -0.5px;
}

.radiomcj-schedule .host-name {
  color: var(--accent-cyan);
  font-size: 0.95rem;
  font-weight: 500;
}

.radiomcj-schedule .time-range {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Seção Tocando Agora */
.radiomcj-schedule .now-playing {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.radiomcj-schedule .now-playing-label {
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.4rem;
}

.radiomcj-schedule .song-title {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Progress bar customizada */
.radiomcj-schedule .progress-custom {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50rem;
  overflow: visible;
  position: relative;
}

.radiomcj-schedule .progress-custom .progress-bar {
  background: var(--accent-cyan);
  border-radius: 50rem;
  position: relative;
}

.radiomcj-schedule .progress-custom .progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.radiomcj-schedule .time-stamps {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Botão Play */
.radiomcj-schedule .btn-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.radiomcj-schedule .btn-play:hover {
  background: var(--accent-cyan);
  color: #0f172a;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
  transform: scale(1.05);
}

/* Efeito de brilho sutil no card */
.radiomcj-schedule .no-ar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.3),
    transparent
  );
}

/* Botão Pedir Música */
.radiomcj-schedule .mcj-btn-request-song {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1.5rem;
  border-radius: 50rem;
  font-weight: 600;
  color: #fff;
  background-color: transparent;
  border: 1px solid #f8f9fa;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.radiomcj-schedule .mcj-btn-request-song:hover {
  background-color: #f8f9fa;
  color: var(--bg-dark);
}

.radiomcj-schedule .mcj-request-song-wrapper {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(108, 117, 125, 0.25);
}
