/* Neon + glitch buttons, glass cards, video bg */
:root {
  --text: #eef2ff;
  --muted: #b2b9d4;
  --glass: rgba(10,14,22,0.55);
  --border: rgba(124,204,255,0.35);
  --accent: #7cf;
  --accent2: #ff60d3;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; color: var(--text); overflow-x: hidden; }

#bg { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.shade { position: fixed; inset: 0; z-index: -1; background: radial-gradient(1200px 800px at 20% 10%, rgba(10,18,36,0.45), rgba(0,0,0,0.68)); backdrop-filter: blur(2px) saturate(110%); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 28px 18px 60px; }
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px) saturate(115%);
  margin-bottom: 18px;
}
.section-title { font-family: 'Orbitron', Inter, sans-serif; letter-spacing: 1px; margin: 0 0 10px; text-transform: uppercase; }

.hero { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: center; }
.album-cover {
  width: 100%; max-width: 520px; aspect-ratio: 1/1; border-radius: 16px; display: block; margin: 0 auto;
  border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.hero-copy { text-align: center; }
.title {
  font-family: 'Orbitron', Inter, sans-serif; text-transform: uppercase; letter-spacing: 1px;
  margin: 6px 0 6px; font-size: clamp(28px, 6vw, 56px); text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.tag { color: var(--muted); margin: 0 0 12px; }

.btn-primary { margin-top: 6px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.btn {
  position: relative; display: inline-block; text-decoration: none; text-align: center;
  color: var(--text); font-weight: 700; padding: 12px 14px; border-radius: 12px;
  background: rgba(14,20,31,0.9); border: 1px solid var(--border);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); background: rgba(18,28,48,0.95); border-color: var(--accent); }
.btn::before {
  content: ""; position: absolute; inset: -2px;
  background: conic-gradient(from var(--angle), var(--accent), var(--accent2), var(--accent));
  filter: blur(12px); opacity: .18; z-index: -1; animation: spin 4s linear infinite;
}
.btn:hover span { display: inline-block; animation: jitter .15s steps(2,end) 2; }
@keyframes spin { to { --angle: 360deg; } }
@keyframes jitter { 50% { transform: translate(1px,-1px) } }

.video-embed iframe { width: 100%; aspect-ratio: 16/9; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.spotify-embed iframe { width: 100%; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

.thumb-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.thumb-row img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; border: 1px solid var(--border); }

@media (min-width: 900px) {
  .hero { grid-template-columns: 420px 1fr; }
  .hero-copy { text-align: left; }
}

.foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 18px; }
