* { box-sizing:border-box }

body {
  margin:0;
  background:#0b0b0b;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

/* NAVBAR */
.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 24px;
  background:linear-gradient(#111,#0b0b0b);
}
.logo { font-size:20px; font-weight:bold }
.logo .muted { color:#555 }
.logo .red { color:#ff2a2a }

nav a {
  margin-left:20px;
  color:#aaa;
}
nav a.active { color:#fff }

.add-live {
  background:#ff2a2a;
  border:none;
  color:white;
  padding:8px 14px;
  border-radius:999px;
  cursor:pointer;
}

/* SECTION */
.section-title {
  display:flex;
  align-items:center;
  gap:10px;
  padding:20px 24px;
}
.line { width:4px; height:22px; background:#ff2a2a }

/* GRID */
.multi-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:24px;
  padding:0 24px 40px;
}

/* CARD */
.live-card {
  background:#000;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,.6);
}

/* POSTER */
.live-card img.poster {
  width:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
}

/* IDN BUTTON */
.idn-btn {
  position:absolute;
  top:12px;
  right:12px;
  background:rgba(0,0,0,.7);
  color:white;
  text-decoration:none;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}

/* REMOVE */
.remove-btn {
  position:absolute;
  bottom:12px;
  right:12px;
  background:rgba(0,0,0,.7);
  color:#ff2a2a;
  border:none;
  width:28px;
  height:28px;
  border-radius:50%;
  font-size:16px;
  cursor:pointer;
}
.remove-btn:hover {
  background:#ff2a2a;
  color:#fff;
}

/* INFO */
.live-info {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 14px;
  background:#111;
}
.live-name { font-weight:bold }
.live-view { color:#ff2a2a; font-size:13px }
