* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background-image: url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 3rem;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 640px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.6));
}

.playlists {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.playlist {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.playlist-credit {
  font-size: 10px;
  color: #cccccc;
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Interstate, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Garuda, Verdana, Tahoma, sans-serif;
  font-weight: 100;
}

.playlist-credit a {
  color: #cccccc;
  text-decoration: none;
}

.soundcloud-embed {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, background 0.15s ease;
}

.social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 85, 0, 0.85);
}

.social img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
