:root {
  --text: #e1e1f0;
  --base: #101831;
  --accent: #a8aece;
  --highlight: #f0ed38;
  --aura: #74f0ed;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: var(--base);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
   
}

header{
    display: flex;
    flex-direction: row;
width: 100vw;
}
.tiger{

    width: auto;
    max-width: 200px;
    height: 200px;
}
.logo {
  width: 300px;
  max-width: auto;
  margin: 20px auto;
  height: auto;
  display: block;
  border-radius: 12px;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.track-box {
  width: 90%;
  max-width: 500px;
  background-color: #222c2c;
  border: 2px solid var(--aura);
  border-radius: 12px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 0 10px var(--aura);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px var(--highlight);
}

.track-box h2 {
  margin: 10px 0;
  font-size: 1rem;
  background: linear-gradient(90deg, var(--highlight), var(--aura));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.equalizer {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 10px;
}

.equalizer div {
  width: 4px;
  height: 20px;
  background: var(--highlight);
  animation: bounce 0.6s infinite ease-in-out alternate;
}

.equalizer div:nth-child(2) { animation-delay: 0.1s; }
.equalizer div:nth-child(3) { animation-delay: 0.2s; }
.equalizer div:nth-child(4) { animation-delay: 0.3s; }

@keyframes bounce {
  from { transform: scaleY(0.3); }
  to { transform: scaleY(1.2); }
}

footer {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  font-size: 0.9rem;
  z-index: 1;
  color: var(--accent);
}

footer a {
  color: var(--highlight);
  text-decoration: none;
}

.footer-quote {
  font-style: italic;
  color: var(--aura);
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .track-box {
    padding: 15px;
    width: 80%;
    
  }
  .track-box h2 {
    font-size: 0.85rem;
  }
  .equalizer div {
    height: 16px;
  }
}
