:root{
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #ff6ec7;
  --text: #e6eef8;
  --muted: #9fb0c8;
  --glass: rgba(255,255,255,0.04);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg,var(--bg), #071021 60%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  transition: background 0.4s ease;
}

.container{max-width:1100px;margin:0 auto;padding:20px;}

/* Header */
.site-header {
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  z-index: 5;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header h1 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  display: inline-block;
  transition: transform 0.18s ease, color 0.18s ease;
}

.nav-list a:hover {
  transform: translateY(-3px);
  color: var(--accent);
}

/* Hero Image */
.hero-img {
  width: 100%;
  max-width: 420px;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 24px rgba(2,6,23,0.6);
}

/* Articles */
article {
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  margin: 12px 0;
  border: 1px solid rgba(255,255,255,0.02);
}

/* Call to Action */
.cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

button, .external-link {
  background: var(--glass);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

button:hover, .external-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.03);
}

/* Hidden elements */
.hidden {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.28s ease;
}

/* Footer */
.site-footer {
  color: var(--muted);
  text-align: center;
  padding: 20px 0;
  margin-top: 24px;
  font-size: 0.9rem;
}

/* Forms */
form {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

input, textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}

/* Figure hover effect */
figure {
  overflow: hidden;
}

figure img {
  transition: transform 0.5s ease;
}

figure:hover img {
  transform: scale(1.06);
}

/* Media Queries */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-list {
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-img {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    padding: 32px;
  }
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.album {
  background: #111;
  color: #eee;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: transform 0.2s ease;
}

.album:hover {
  transform: scale(1.03);
}

.album img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.album h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.album p {
  font-size: 0.9rem;
  color: #ccc;
}


.album-links {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.album-links a {
  background: #e50914;
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.album-links a:hover {
  background: #b00610;
}

.hero-section {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #111);
  color: #fff;
  padding: 2rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
  transition: 0.3s ease;
}

.hero-section:hover {
  transform: scale(1.01);
}

.hero-img {
  max-width: 300px;
  border-radius: 20px;
  margin: 1rem 0;
}

.quote {
  font-style: italic;
  color: #ccc;
  margin: 1rem auto;
  max-width: 600px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #e91e63;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #ff4081;
}

.facts ul li, .tracks ol li {
  margin-bottom: 0.6rem;
}

.tracks a {
  color: #ff6ec7;
  text-decoration: none;
}

.tracks a:hover {
  text-decoration: underline;
}

.hidden-fact {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255,255,255,0.05);
}

.hidden-fact h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.fact-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.fact-text.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.bio-extra {
  background: rgba(255,255,255,0.03);
  padding: 14px;
  border-radius: 12px;
  margin-top: 8px;
  animation: fadeIn 0.5s ease forwards;
}

.reveal-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reveal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255,110,199,0.3);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.pulse-title {
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 768px){
  .fade-up { transform: translateY(10px); }
  .reveal-btn { width: 100%; }
}

@media (min-width: 1024px){
  .container { padding: 32px; }
}

