/* General body styles */
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: white;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Header styles */
header {
  padding-top: 40px; /* Extra top space */
}
header h2 {
  margin: 10px 0;
}

/* Navigation styles */
nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.button-row {
  display: flex;
  gap: 10px;
}

/* Default button styling for YouTube & SoundCloud */
nav button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

nav button:hover {
  background-color: #555;
}

/* Standout styling for the Surprise Me button */
#btn-surprise {
  background-color: #ff4500;  /* A bright, distinct color */
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

#btn-surprise:hover {
  background-color: #e03e00;
}

/* Grid layout for curated mixes */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Mix card styling */
.mix-card {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.mix-card img {
  width: 100%;
  border-radius: 8px;
}

.mix-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

/* "Listen Now" link styling */
.mix-card a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* SoundCloud list styling */
.soundcloud-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
}

.soundcloud-list li {
  padding: 10px;
  border-bottom: 1px solid #333;
}

.soundcloud-list li a {
  color: white;
  text-decoration: none;
}
