/* ============================================================
   DJ SCHEDULE — Bloc home programme de la semaine
   ============================================================ */
.dj-schedule-block {
    padding: 14px 16px;
}
.dj-schedule-head {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}
.dj-schedule-title {
    font-family: var(--font-display, 'Orbitron');
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin: 0;
    color: var(--text-1);
    flex: 1;
}
.dj-schedule-title i { color: #a78bfa; margin-right: 6px; }
.dj-schedule-more {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}
.dj-schedule-more:hover { color: #ff8533; }
.dj-schedule-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dj-schedule-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 4px solid #ff6b00;
    border-radius: 8px;
    transition: background 0.15s;
}
.dj-schedule-row:hover {
    background: rgba(255,255,255,0.06);
}
.dj-schedule-row.is-live {
    border: 2px solid #ff4757;
    background: rgba(255, 71, 87, 0.08);
    box-shadow: 0 0 16px rgba(255, 71, 87, 0.2);
}
.dj-schedule-now-pill {
    background: #ff4757;
    color: #fff;
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.dj-schedule-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: dj-sched-pulse 1.4s infinite;
}
@keyframes dj-sched-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.dj-schedule-day {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 42px;
    text-align: center;
}
.dj-schedule-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 71, 87, 0.5);
    flex-shrink: 0;
    background: var(--bg-3);
}
.dj-schedule-avatar-placeholder {
    background: linear-gradient(135deg, #ff8533, #ff4757);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border-color: rgba(255, 71, 87, 0.6);
}
.dj-schedule-info {
    flex: 1;
    min-width: 0;
}
.dj-schedule-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dj-schedule-time {
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 2px;
    font-feature-settings: "tnum";
}
.dj-schedule-time i { color: #a78bfa; font-size: 0.7rem; margin-right: 3px; }

@media (max-width: 480px) {
    .dj-schedule-avatar { width: 32px; height: 32px; }
    .dj-schedule-name { font-size: 0.85rem; }
    .dj-schedule-time { font-size: 0.72rem; }
}
