:root {
  --bg: #0b0b0d;
  --card: #141418;
  --text: #f2f2f2;
  --muted: #b5b5b5;
  --border: rgba(255, 255, 255, 0.08);
  --hover: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html, body {
  /* background: radial-gradient(circle at top, #1a1a1f 0%, var(--bg) 60%); */
  background: #1a1a1f;
  color: var(--text);
  min-height: 100dvh;
  margin: 0;
}

.wrapper {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.logo {
  width: 300px;
  height: 300px;
  /* margin: 0 auto 18px auto; */
  /* border-radius: 50%; */
  object-fit: contain;
  /* background: #111; */
  /* border: 1px solid var(--border); */
}

.show {
  display: block;
  padding: 14px 16px;
  /* border-radius: 12px; */
  background: var(--card);
  /* border: 1px solid var(--border); */
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.15s ease;
  text-align: left;
}

.show-date {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.show-venue {
  margin-bottom: 10px;
  line-height: 1.3;
}

.show-bands {
  font-size: 0.9rem;
  opacity: 0.85;
}

.desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--hover);
}

.btn span {
  opacity: 0.85;
}

#shows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer {
  margin-top: 26px;
  font-size: 12px;
  color: #777;
}