body {
  background-color: #0f0f0f;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  padding: 40px;
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

p {
  color: #bbbbbb;
  margin-bottom: 40px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 16px;
  font-size: 18px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.card {
  display: block;
  padding: 18px;
  border-radius: 14px;
  background: #161616;
  border: 1px solid #252525;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  background: #1b1b1b;
  border-color: #3a3a3a;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-sub {
  font-size: 14px;
  color: #bdbdbd;
}
@media (max-width: 800px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  body {
    padding: 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
body {
  line-height: 1.5;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #161616;
  border: 1px solid #252525;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  background: #1b1b1b;
  border-color: #3a3a3a;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #2a2a2a;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.card-sub {
  font-size: 14px;
  color: #bdbdbd;
}

@media (max-width: 800px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  body { padding: 24px; }
  .grid { grid-template-columns: 1fr; }
}
.back {
  display: inline-block;
  margin-bottom: 22px;
  color: #bdbdbd;
  text-decoration: none;
}

.back:hover {
  color: #ffffff;
}

.artist-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.artist-avatar {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid #2a2a2a;
}

.artist-name {
  font-size: 44px;
  margin: 0 0 8px 0;
}

.artist-tagline {
  margin: 0 0 14px 0;
  color: #bdbdbd;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  color: #0f0f0f;
  text-decoration: none;
  font-weight: 700;
}

.btn:hover {
  opacity: 0.9;
}

.embed {
  background: #141414;
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 22px;
}

.muted {
  color: #bdbdbd;
}

@media (max-width: 520px) {
  .artist-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .artist-name {
    font-size: 34px;
  }
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.release-card {
  display: block;
  padding: 12px;
  border-radius: 16px;
  background: #161616;
  border: 1px solid #252525;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.release-card:hover {
  transform: translateY(-3px);
  background: #1b1b1b;
  border-color: #3a3a3a;
}

.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  margin-bottom: 10px;
}

.release-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.release-sub {
  color: #bdbdbd;
  font-size: 14px;
}

@media (max-width: 800px) {
  .release-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .release-grid { grid-template-columns: 1fr; }
}

* { box-sizing: border-box; }

body {
  max-width: 980px;
  margin: 0 auto;
}

h2 {
  margin-top: 28px;
}

.hero {
  position: relative;
  margin-bottom: 48px;
  padding: 80px 48px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, #2a2a2a, #0f0f0f 60%);
  border: 1px solid #252525;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: 64px;
  margin: 0 0 16px 0;
}

.hero-tagline {
  font-size: 20px;
  color: #cfcfcf;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #3a3a3a;
}

.btn.secondary:hover {
  background: #1b1b1b;
}

@media (max-width: 800px) {
  .hero {
    padding: 56px 28px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-tagline {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 38px;
  }
}
.album-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.album-hero {
  margin-bottom: 18px;
}

.album-title {
  margin: 0 0 6px 0;
  font-size: 46px;
}

.lyrics-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  align-items: start;
}

.tracklist {
  background: #141414;
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 14px;
}

.tracklist-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.track-btn {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #252525;
  background: #161616;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 10px;
}

.track-btn:hover {
  background: #1b1b1b;
  border-color: #3a3a3a;
}

.track-btn.active {
  border-color: #ffffff;
}

.trackpanel {
  min-width: 0;
}

.lyrics-box {
  background: #141414;
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 16px;
  white-space: pre-wrap; /* behoud regels/enter */
  line-height: 1.75;
  color: #eaeaea;
}

/* mobiel */
@media (max-width: 900px) {
  .lyrics-layout {
    grid-template-columns: 1fr;
  }
}
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

.top-nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-link {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 14px;
}

.nav-link:hover {
  color: #ffffff;
}

.top-nav-right {
  flex-shrink: 0;
}

.hero-title {
  perspective: 900px;
}

.flip-letters {
  display: inline-block;
  margin-right: 2px;
}

.flip-letters .letter {
  display: inline-block;
  transform-style: preserve-3d;
  transform-origin: center;
  animation: letterFlipHold 6s ease-in-out infinite;
  will-change: transform;
  /* backface-visibility: visible;  <-- default is visible, dus hoeft niet */
}

/* Lang normaal, dan flip, dan even ondersteboven, dan terug */
@keyframes letterFlipHold {
  0%   { transform: rotateX(0deg); }
  70%  { transform: rotateX(0deg); }
  78%  { transform: rotateX(180deg); }
  82%  { transform: rotateX(180deg); }   /* <-- hold ondersteboven */
  90%  { transform: rotateX(360deg); }
  100% { transform: rotateX(360deg); }
}

}

@media (prefers-reduced-motion: reduce) {
  .flip-letters .letter { animation: none; }
}

}

.listen-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* release-card als button ook netjes */
.release-card {
  cursor: pointer;
  text-align: left;
  border: 1px solid #252525;
}

.release-card:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(520px, calc(100% - 32px));
  margin: 12vh auto 0 auto;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 16px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.modal-kicker {
  color: #bdbdbd;
  font-size: 13px;
  margin-bottom: 4px;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
}

.modal-close {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.modal-close:hover {
  background: #1b1b1b;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Zorg dat button-cards niet "button-achtig" zijn */
.release-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #252525;
  background: #161616;
  color: inherit;
  padding: 12px;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.release-card:hover {
  transform: translateY(-3px);
  background: #1b1b1b;
  border-color: #3a3a3a;
}

.release-card:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  margin-bottom: 12px;
}

/* Dit is het stuk dat je mooier wil hebben */
.release-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.release-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}

.release-badge {
  font-size: 12px;
  color: #cfcfcf;
  border: 1px solid #333;
  background: #141414;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.footer {
  margin-top: 56px;
  padding: 28px 0 10px 0;
  text-align: center;
}

.footer-logo {
  width: min(520px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 14px auto;
  filter: none; box-shadow: none;
}

.footer-tagline {
  color: #bdbdbd;
  margin: 0;
}
.hero {
  position: relative; /* nodig voor absolute positioning */
}

.hero-logo {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 92px;        /* pas aan */
  height: auto;
  opacity: 0.35;      /* subtiel */
  filter: none; box-shadow: none;
  pointer-events: none; /* voorkomt per ongeluk klikken */
}
@media (max-width: 520px) {
  .hero-logo {
    width: 70px;
    right: 18px;
    bottom: 18px;
    opacity: 0.28;
  }
}

/* Artists grid responsive */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop */
  gap: 16px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* tablet/phone */
  }
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr; /* kleine phones */
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 40px;   /* pas aan als je al iets hebt */
    line-height: 1.05;
  }

  .hero-tagline {
    font-size: 16px;
  }
}
.hero { position: relative; }

.hero-logo{
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 64px;
  height: auto;
  opacity: 0.28;
  pointer-events: none;
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .top-nav-left {
    flex-direction: row;
    gap: 10px;
  }

  .top-nav-right {
    display: flex;
    flex-wrap: wrap;      /* belangrijk */
    gap: 10px;
  }

  .top-nav-right .btn {
    flex: 1 1 160px;      /* knoppen pakken beschikbare ruimte */
    text-align: center;
  }

  /* Als je Home knop te groot is: */
  .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #252525;
    background: #161616;
  }
}
@media (max-width: 720px) {
  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .actions {
    grid-template-columns: 1fr;
  }
}


