body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: #222;
  background: #222;
  position: relative;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1465101178521-c1a6bca4a1c1?auto=format&fit=crop&w=1500&q=80")
    center/cover no-repeat;
  opacity: 0.3;
  z-index: -1;
}

header {
  color: #fff;
  min-height: 50vh;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: rgba(44, 62, 80, 0.7);
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e67e22;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.menu-icon span {
  display: block;
  height: 4px;
  width: 28px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.hero {
  text-align: center;
  margin-top: 60px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.btn {
  background: #e67e22;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  margin-top: 8px;
}

.btn:hover {
  background: #d35400;
}

main {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  max-width: 1100px;
  margin: 20px auto 40px auto;
}

h2 {
  text-align: center;
  color: #e67e22;
  margin-bottom: 32px;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}

.song-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
  padding: 20px;
  text-align: center;
}

.song-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.song-card h3 {
  margin: 8px 0 4px 0;
  color: #e67e22;
}

.song-card p {
  font-size: 1rem;
  color: #636e72;
  margin-bottom: 8px;
}

.desc {
  text-align: center;
  color: #222;
  margin-bottom: 32px;
}

section {
  margin-bottom: 48px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 12px;
}

.footer-links a {
  color: #e67e22;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

footer {
  background: #2d3436;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
}

.music-player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.music-player-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
  padding: 20px;
  text-align: center;
}

.music-player-card h3 {
  margin-bottom: 12px;
  color: #e67e22;
}

audio {
  width: 100%;
  outline: none;
}

/* Responsive Styles */
@media (max-width: 900px) {
  nav {
    padding: 16px 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  main {
    padding: 20px 8px;
  }
}

@media (max-width: 700px) {
  nav {
    position: relative;
  }
  .nav-links {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #2d3436;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 16px 0;
    z-index: 10;
  }
  .nav-links li {
    margin: 12px 0;
  }
  .menu-icon {
    display: flex;
  }
  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 1.3rem;
  }
  .hero h1 {
    font-size: 1.1rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 8px 18px;
    font-size: 1rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .song-card img {
    width: 100px;
  }
}
