* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

        @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700&display=swap');

        body {
          display: flex;
          flex-direction: column;
          background: #000;
          color: #fff;
          font-family: 'Share Tech Mono', monospace;
        }

nav {
  position: fixed;
  background: #000;
  z-index: 100;
  padding: 16px 0;
  width: 100%;
}

.nav-top {
  top: 0;
}

.nav-bottom {
  bottom: 0;
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 8px 16px;
}

@media (max-width: 768px) {
  nav ul {
    padding: 0 8px;
  }
  nav a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

main {
  padding: 60px 0;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.logo {
  max-width: 80vw;
  max-height: 60vh;
  width: auto;
  height: auto;
  display: block;
}

      .tagline {
        text-align: center;
        margin-top: 0;
        color: #fff;
        font-family: 'Share Tech Mono', monospace;
        font-size: 1rem;
        letter-spacing: 0.1em;
        line-height: 1;
      }

main h1 {
  font-family: 'Share Tech Mono', monospace;
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.5rem;
  text-align: center;
}

main h2 {
  font-family: 'Share Tech Mono', monospace;
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.2rem;
  text-align: center;
}

main p {
  font-family: 'Share Tech Mono', monospace;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 800px;
  text-align: center;
  padding: 0 16px;
}

/* Music Library Styling */
.music-library {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.music-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #222;
  border: 1px solid #444;
  border-radius: 2px;
}

.music-item:hover {
  background: #333;
}

.music-item .title {
  font-family: 'Share Tech Mono', monospace;
  color: #fff;
}

.music-item .artist {
  font-family: 'Share Tech Mono', monospace;
  color: #888;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 16px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
