/* replays/style.css — monochrome + cold cyan accent, compact layout */

/* variables */
:root{
  --bg:#0d0d0f;
  --panel:#18181a;
  --muted:#bdbdbd;
  --accent:#00d4ff;
  --white:#f2f2f2;
}

/* reset */
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family: Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--white);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* header */
header.hero{
  text-align:center;
  padding:26px 16px;
  background:linear-gradient(180deg,var(--panel),#151517);
  border-bottom:2px solid rgba(0,212,255,0.12);
}
header.hero h1{color:var(--accent);font-size:1.9rem;margin-bottom:6px}
header.hero .sub{color:var(--muted);max-width:820px;margin:0 auto;font-size:0.98rem}

/* stream list (main hub) */
.stream-list{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); /* compact */
  gap:12px;
  padding:18px;
  width:100%;
  max-width:1300px;
  margin:12px auto 40px;
}

.stream-card{
  background:var(--panel);
  border-radius:10px;
  overflow:hidden;
  text-align:center;
  border:1px solid rgba(255,255,255,0.03);
  transition:transform .18s ease,box-shadow .18s ease;
  cursor:pointer;
}
.stream-card:hover{transform:translateY(-6px);box-shadow:0 8px 20px rgba(0,212,255,0.06)}
.thumb-wrap{background:#000;display:flex;align-items:center;justify-content:center;height:120px}
.thumb-wrap img{width:100%;height:100%;object-fit:contain;display:block}

/* title/meta */
.stream-card h2{font-size:1rem;margin:10px 12px 4px;color:var(--white)}
.stream-card .meta{font-size:0.85rem;color:var(--muted);margin:0 12px 14px}

/* clip list inside a stream */
.clip-list{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:14px;
  padding:18px;
  width:100%;
  max-width:1300px;
  margin:12px auto 40px;
}
.clip-card{
  background:var(--panel);
  border-radius:10px;
  padding:12px;
  border:1px solid rgba(255,255,255,0.03);
  transition:transform .16s ease;
}
.clip-card:hover{transform:translateY(-6px)}
.clip-thumb img{width:100%;height:150px;object-fit:contain;border-radius:6px;background:#000}
.clip-card h3{font-size:1rem;margin:10px 0 6px;color:var(--white)}
.clip-card video{width:100%;border-radius:8px;border:2px solid rgba(0,212,255,0.12);background:#000;margin-bottom:8px}

/* download button */
.download-btn{
  display:inline-block;
  padding:8px 14px;
  background:linear-gradient(135deg,var(--accent),#0099cc);
  color:#04121a;
  font-weight:700;
  border-radius:8px;
  text-decoration:none;
  transition:transform .12s ease,box-shadow .14s ease;
}
.download-btn:hover{transform:scale(1.03);box-shadow:0 8px 18px rgba(0,212,255,0.12)}

/* back link */
.back{color:var(--accent);text-decoration:none;font-weight:600}

/* footer */
.site-foot{margin-top:auto;padding:18px;text-align:center;color:var(--muted);border-top:1px solid rgba(255,255,255,0.02);background:linear-gradient(180deg,#0c0c0c,#0b0b0c)}

/* responsive tweaks */
@media (max-width:700px){
  .thumb-wrap{height:96px}
  .clip-thumb img{height:120px}
  .stream-list{gap:10px;padding:12px}
  .clip-list{gap:10px;padding:12px}
}
