/* ---------- BASE THEME -------------------------------------------------- */
:root{
  --accent:#e4007b;
  --accent-hover:#c40069;
  --accent-text:#fff;
  font-family:'Inter',sans-serif;
}

body{
  margin:0;
  background:#111;
  color:#eee;
}

/* ---------- HEADER ------------------------------------------------------ */
header{
  display:flex;
  align-items:center;
  justify-content:center;
  height:140px;
  margin-bottom:24px;
}

header img{
  height:150px;
  filter:drop-shadow(0 0 6px rgba(0,0,0,.8));
}

/* ---------- MAIN WRAPPER ------------------------------------------------ */
main.center{
  max-width:700px;
  margin:0 auto;
  padding:0 16px;
}

/* ---------- VIDEO ------------------------------------------------------- */
#player{
  display:block;
  width:auto;
  max-width:450px;
  border-radius:12px;
  background:#000;
  margin:0 auto;
}

#player::-webkit-media-controls{opacity:1 !important;}

/* ---------- TRACK BUTTONS ---------------------------------------------- */
#tracklist{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}

button{
  flex:1 1 calc(50% - 8px);
  min-width:140px;
  padding:8px 12px;
  background:var(--accent);
  color:var(--accent-text);
  border:none;
  border-radius:999px;
  font:500 1rem/1.2 'Inter',sans-serif;
  cursor:pointer;
  transition:background .15s;
}

button:hover{background:var(--accent-hover);}

/* ---------- SHOW CARDS -------------------------------------------------- */
#show-cards{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
}

.show-card{
  background:#222;
  border-radius:8px;
  overflow:hidden;
  text-align:center;
}

.show-card img{width:100%;height:auto;display:block;}
.show-card div{padding:4px 8px;}

.show-card a{
  display:inline-block;
  margin-top:8px;
  padding:6px 12px;
  font-size:.85em;
  background:#222;
  color:#fff;
  border-radius:4px;
  text-decoration:none;
}

.show-card a:hover{background:#444;text-decoration:none;}

/* ---------- MERCH GRID -------------------------------------------------- */
#merch{
  margin:48px 0 32px;
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  text-align:center;
  max-width:700px;
  margin-left:auto;margin-right:auto;
}

#merch h2{
  grid-column:1/-1;
  margin:0 0 8px;
  font-weight:700;
}

#merch img{
  width:100%;
  height:auto;
  border-radius:8px;
}

#merch button{margin-top:6px;}

/* ---------- SHOWS BANNER ------------------------------------------------ */
#shows-banner{
  background:#333;
  color:#fff;
  padding:8px 12px;
  text-align:center;
  font-size:.9rem;
  margin:32px 0;
  border-radius:6px;
}

#shows-banner a{color:var(--accent);text-decoration:underline;}

/* ---------- MOBILE ≤480 PX --------------------------------------------- */
@media (max-width:480px){
  header{height:110px;margin-bottom:12px;}
  #player{max-width:100%;margin:12px auto;}
  #tracklist{gap:8px;}
  #tracklist button{
    flex:1 1 calc(50% - 8px);
    font-size:.9rem;
    padding:6px 8px;
  }
}
.show-title{
  background:#222;
  padding:4px 8px;
  font-weight:600;
  text-align:center;
}

.show-info{
  background:#222;
  padding:4px 8px;
  font-size:.9em;
  line-height:1.4;
}

.show-link{
  display:block;
  background:var(--accent);
  color:var(--accent-text);
  padding:6px 12px;
  text-align:center;
  text-decoration:none;
}

.show-link:hover{background:var(--accent-hover);}
