@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #000;
  color: #e0e0e0;
  padding: 2rem 1.5rem 4rem;
}

header {
  position: relative;
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.neon-header {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1db954;
  text-shadow: 0 0 10px rgba(29, 185, 84, 0.7);
  margin-bottom: 1rem;
}

.play-button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background-color: #1db954;
  color: #000;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(29, 185, 84, 0.5);
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 0.95rem;
}

.play-button:hover {
  background-color: #18a34a;
  transform: scale(1.05);
}

.lower-nav {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid #1db954;
  padding-bottom: 1rem;
}

.home-link {
  color: #1db954;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.home-link:hover {
  opacity: 0.8;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.songs-grid, .playlists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.songs-grid iframe,
.playlists-grid iframe {
  width: 100%;
  height: 80px;
  border: none;
  border-radius: 14px;
  background-color: #121212;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.songs-grid iframe:hover,
.playlists-grid iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.6);
}

.playlist h3 {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

footer {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #444;
  border-top: 1px solid #111;
}