body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050810;
  color: #f0f4ff;
  line-height: 1.6; /* Better text readability */
}

header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #0a1324, #050810);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: #cfe0ff;
}


header p {
  margin: 0.3rem 0 0;
  color: #b2c4ff;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

main {
  max-width: 1000px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.albums {
  display: grid;
  gap: 5rem;
  align-items: flex-start;
  justify-items: center;              
  justify-content: center;            
  grid-template-columns: repeat(
    auto-fit,
    minmax(260px, 320px)              
  );
}

.album h2 {
  font-size: 1.8rem;
  color: #cfe0ff;
}

.album h3 {
  margin-top: 1.4rem;      
  margin-bottom: 0.8rem;
  margin-left: 0.1rem; /* Tiny nudge for pixel-perfect alignment */
}


.album h3:first-of-type {
  margin-top: 2.4rem;
}


ol {
  padding-left: 1.6rem;   
  margin-left: 0;         
}

a.btn {
  display: inline-block;
  margin-top: 0.2rem;
  margin-bottom: 1.4rem;
  padding: 0.6rem 1.4rem;
  background: #cfe0ff;
  color: #050810;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

footer {
  margin-top: 1.8rem;              /* Balanced space above footer */
  text-align: center;
  padding: 2rem 1rem;
  color: #7788aa;
  font-size: 0.9rem;
  margin-bottom: 2rem;           /* Extra breathing room below the footer */
}

.album-cover {
  display: block;
  width: 260px;        
  max-width: 90%;      
  height: auto;
  margin: 1.2rem 0 1.6rem;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

/* Global container for the “Available On” section */
.stores-global {
  margin: 4rem auto 1.4rem;      /* Balanced spacing above and below */
  text-align: center;
  max-width: 800px;              /* Same visual width as main content */
}

/* Title above the store icons */
.stores-title {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9c7ff;
  margin-bottom: 1rem;           /* Slight space before icon rows */
}

.stores-rows img {
  display: block;
  height: 30px;              /* Desktop size */
  width: auto;               /* Keep aspect ratio */
  margin: 0.4rem auto;       /* Center horizontally */
}

/* Adjust store icons for small screens */
@media (max-width: 600px) {
  .stores-rows img {
    height: 22px;            /* Smaller icons on mobile */
    width: auto;             /* Keep aspect ratio */
    max-width: 90vw;         /* Never wider than the viewport */
    margin: 0.35rem auto;    /* Keep rows centered */
  }

  .stores-global {
    margin-top: 2.5rem;      /* Slightly tighter spacing above */
    margin-bottom: 1.4rem;   /* Slightly tighter spacing below */
  }
}

/* Soft divider line before the global store section */
.separator {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Very subtle line */
  margin: 5rem auto 1rem;
  max-width: 600px; /* Keeps it elegant, not full width */
}

