/* Reset i podstawy */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #b3b3b3;
}

body {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px 40px;
  background-color: #121212;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 128, 0.3);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #1DB954; /* Spotify green */
  text-align: center;
  text-shadow: 0 0 10px #1DB954;
}

img.album-cover {
  display: block;
  margin: 20px auto 30px;
  border-radius: 10px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.8);
  transition: transform 0.3s ease;
}

img.album-cover:hover {
  transform: scale(1.05);
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto 30px;
  max-width: 700px;
  text-align: center;
  color: #a5a5a5;
}

h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 3px solid #1DB954;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  color: #1DB954;
}

ol {
  max-width: 520px;
  margin: 0 auto 40px;
  padding-left: 20px;
  font-size: 1.1rem;
  color: #ccc;
}

ol li {
  padding: 8px 0;
  border-bottom: 1px solid #333;
  transition: color 0.3s ease;
}

ol li:hover {
  color: #1DB954;
}

nav {
  text-align: center;
  margin-top: 30px;
}

nav a {
  color: #1DB954;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border: 2px solid #1DB954;
  padding: 10px 24px;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: #1DB954;
  color: #121212;
  box-shadow: 0 0 15px #1DB954;
}
