.schedule-main{max-width:800px;margin:0 auto;padding:40px 24px 100px;}
.schedule-eyebrow{font-size:12px;font-weight:800;letter-spacing:0.2em;color:var(--accent);margin-bottom:6px;}
.schedule-title{font-size:32px;font-weight:900;color:var(--text);margin-bottom:24px;}
.schedule-loading{color:var(--text-dim);font-size:14px;}
.schedule-empty{padding:60px 20px;text-align:center;color:var(--text-dim);font-size:14px;}

.schedule-days{display:flex;flex-direction:column;gap:16px;}

.schedule-day-card{
  border:1px solid var(--border);border-radius:16px;background:var(--card);overflow:hidden;
}
.schedule-day-card.today{border-color:rgba(232,37,23,0.35);background:rgba(232,37,23,0.05);}

.schedule-day-head{display:flex;align-items:center;gap:14px;padding:16px 20px;border-bottom:1px solid var(--border);}
.schedule-day-mark{
  display:flex;height:44px;width:44px;flex-shrink:0;align-items:center;justify-content:center;
  border-radius:12px;font-weight:900;font-size:18px;color:var(--text-dim);background:rgba(255,255,255,0.06);
}
.schedule-day-card.today .schedule-day-mark{color:var(--accent);background:rgba(232,37,23,0.14);}
.schedule-day-name{margin:0;font-size:16px;font-weight:800;color:var(--text);}
.schedule-day-count{margin:0;font-size:12px;color:var(--text-dim);}
.schedule-today-badge{
  margin-left:auto;font-size:10px;font-weight:800;letter-spacing:0.15em;text-transform:uppercase;
  padding:5px 12px;border-radius:999px;color:var(--accent);background:rgba(232,37,23,0.12);
  border:1px solid rgba(232,37,23,0.35);white-space:nowrap;
}

.schedule-day-body{padding:8px;}
.schedule-day-empty{padding:16px 12px;font-size:13px;color:var(--text-dim);}

.schedule-item{display:flex;align-items:center;gap:14px;padding:10px 12px;border-radius:12px;text-decoration:none;}
.schedule-item:hover{background:rgba(255,255,255,0.05);}
.schedule-item-time{
  flex-shrink:0;width:52px;font-size:15px;font-weight:800;color:var(--accent-2);
  font-variant-numeric:tabular-nums;
}
.schedule-item-thumb{
  position:relative;height:56px;width:40px;flex-shrink:0;border-radius:7px;overflow:hidden;
  background:#15151d;
}
.schedule-item-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.schedule-item-info{flex:1;min-width:0;}
.schedule-item-title{margin:0;font-size:14px;font-weight:600;color:var(--text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.schedule-item-ep{margin:2px 0 0;font-size:12px;color:var(--text-dim);}
.schedule-item-arrow{flex-shrink:0;color:rgba(255,255,255,0.35);}

@media (max-width:600px){
  .schedule-title{font-size:24px;}
  .schedule-day-head{padding:14px 16px;}
  .schedule-today-badge{font-size:9px;padding:4px 9px;}
}
