:root {
    --black: #000;
    --near-black: #050505;
    --bg-1: #111;
    --text: #fff;
    --text-dim: #ccc;
    --text-muted: #888;
    --brand: #ffcc00;
    --accent: #ff0033;
    --line: #444;
    --line-soft: #eee;
}
html, body {
  height: 100%;
}
body {
  background: #f5f5f5;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 0px;
  margin: 0px;
}
a {
    text-decoration: none;
    color: var(--text);
    transition: color .3s ease;
}
a:hover {
    color: var(--brand);
}
.container {
  max-width: 600px;
  margin: 50px auto;
  position: relative;
  z-index: 2;
}
.page-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 5px;
  color: #111;
}
.tagline {
  text-align: center;
  color: #e2e2e2;
  margin-bottom: 30px;
  font-style: italic;
}
.platform-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  width: 400px;
  height: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.2s ease;
}
.platform-card:hover {
  transform: translateY(-2px);
}
.platform-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.platform-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.platform-name {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.play-btn {
  background: #e4e7ee;
  color: #111;
  padding: 10px 18px;
  height: 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease;
}
.play-btn:hover {
  background: #d0d3da;
}
.container .album-art-box .album-art {
    display: block;
    height: 250px !important;
    width: 250px !important;
    margin: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
}


/* Fullscreen background with blur and whitewash overlay */
.background-wrapper {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* subtle dark overlay so text stays readable */
.background-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.6));
  pointer-events: none;
}

/* The blur and white overlay */
.background-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

/* Keeps everything inside visible above the blur */
.background-wrapper > .container {
  position: relative;
  z-index: 2;
}
