/* Images page (band carousel) */

/* Safety: ensure dark theme even if other site CSS changes */
body{ background:#0b1220; color:#eaeaea; }

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:14px 0 16px;
}

/* When lots of bands exist, allow horizontal scrolling on small screens */
@media (max-width: 820px){
  .pill-row{ flex-wrap:nowrap; overflow-x:auto; padding-bottom:6px; }
  .pill-row::-webkit-scrollbar{ height:8px; }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:#eaeaea;
  text-decoration:none;
  font-size:13px;
  line-height:1;
  cursor:pointer;
  user-select:none;
}
.pill:hover{ background:rgba(255,255,255,0.07); }
.pill.active{
  border-color:rgba(125,211,252,0.45);
  background:rgba(125,211,252,0.10);
}

.card{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.03);
  border-radius:16px;
  padding:16px;
}

.card-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}

.card-title{ font-size:18px; font-weight:700; }
.card-meta{ font-size:13px; opacity:0.75; margin-top:4px; }

.btn{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:#eaeaea;
  text-decoration:none;
  font-size:13px;
}
.btn:hover{ background:rgba(255,255,255,0.07); }

.status{
  font-size:13px;
  opacity:0.8;
  margin:10px 0;
}

.status.error{ color:#ffb4b4; opacity:0.95; }

.loader{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.spinner{
  width:16px;
  height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,0.25);
  border-top-color:rgba(125,211,252,0.85);
  animation:spin 0.9s linear infinite;
}
@keyframes spin{ to { transform: rotate(360deg); } }

.carousel{
  position:relative;
  display:grid;
  grid-template-columns:44px 1fr 44px;
  gap:10px;
  align-items:center;
  margin-top:6px;
}

.carousel-main{
  min-height:320px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.25);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.carousel-link{
  display:block;
}

.carousel-main img{
  width:100%;
  height:auto;
  max-height:560px;
  object-fit:contain;
  background:rgba(0,0,0,0.35);
}

.carousel-caption{
  padding:10px 12px;
  font-size:12px;
  opacity:0.8;
  border-top:1px solid rgba(255,255,255,0.08);
}

.carousel-nav{
  height:44px;
  width:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:#eaeaea;
  font-size:22px;
  cursor:pointer;
}
.carousel-nav:hover{ background:rgba(255,255,255,0.07); }

.thumb-strip{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:10px 2px 2px;
  margin-top:10px;
}

.thumb{
  flex:0 0 auto;
  width:110px;
  height:70px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.25);
  overflow:hidden;
  cursor:pointer;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.thumb.active{
  border-color:rgba(125,211,252,0.55);
  box-shadow:0 0 0 2px rgba(125,211,252,0.18) inset;
}

.thumb.thumb-more{
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:12px;
  letter-spacing:0.02em;
  color:rgba(234,230,255,0.95);
  background:rgba(109,68,208,0.18);
  border-color:rgba(163,134,255,0.45);
}
.thumb.thumb-more:hover{ background:rgba(109,68,208,0.28); }

.footnote{
  margin-top:12px;
  font-size:12px;
  opacity:0.65;
}

.show-time{margin-left:.35rem;opacity:.85;font-size:.9em}
