* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #f5f5f7, #e5e7eb 55%, #d4d4d8);
  color: #111827;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* NEW: spread header/player/skyline over full height */
  padding: 2rem 1.5rem 1.5rem;   /* you can reduce top padding if needed */

  max-width: 1200px;             /* if you added this earlier, keep/tweak it */
  margin: 0 auto;
}

/* Logo bovenaan */

.logo-wrapper {
  margin-bottom: 2.5rem;
}

.logo {
  max-width: 260px;
  width: 50vw;
  height: auto;
}

/* Player kaart */

.player-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.player-group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.mini-player-actions {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mini-player-btn {
  appearance: none;
  border: 1px solid rgba(17, 24, 39, 0.25);
  background: rgba(255, 255, 255, 0.6);
  color: #111827;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mini-player-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}

.player-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  width: 80px;   /* bigger clickable pill */
  height: 80px;
}

.play-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: inherit;     /* same round shape as card */
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;    /* center icon inside button */
}

.play-btn:active {
  transform: scale(0.97);
}

.play-icon-img {
  width: 48px;   /* adjust size as you like */
  height: 48px;
  display: block;
}

.np-widget {
  width: 100%;
  max-width: 380px;
  margin: 0;          /* no auto margins – let flexbox position it */

  background: #111;
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}

.np-cover {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  background: #333;
}

.np-info {
  flex: 1;
}

.np-label {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 3px;
}

.np-artist {
  font-size: 18px;
  font-weight: bold;
}

.np-title {
  font-size: 14px;
  opacity: 0.9;
}
/* Skyline onderaan */

.skyline-wrapper {
  margin-top: -6rem;
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 1;
}

.skyline {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.site-footer {
  margin-top: -1rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
}