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

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

body, html {
  height: 100%;
  font-family: 'Share Tech Mono', monospace;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

.overlay {
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 2s ease;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 3.5rem;
  color: #9b00ff;
  text-shadow: 0 0 20px #9b00ff, 0 0 40px #fff;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
  text-shadow: 0 0 5px #9b00ff;
}

.menu a {
  display: block;
  margin: 10px 0;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #9b00ff;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 0 10px #9b00ff;
}

.menu a:hover {
  background-color: #9b00ff;
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About section styles */
#sobre {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 20px;
}

.sobre-container {
  max-width: 800px;
  padding: 30px;
  border: 1px solid #9b00ff;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px #9b00ff;
  animation: fadeIn 1.5s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
}

.sobre-container h2 {
  color: #9b00ff;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
}

.sobre-container p {
  line-height: 1.6;
  text-align: justify;
  color: #ccc;
}

/* Player page styles */
.player-container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.player-box {
  width: 100%;
  border: 1px solid #9b00ff;
  border-radius: 10px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px #9b00ff;
  margin-bottom: 20px;
}

.player-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.player-controls button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #9b00ff;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  font-family: 'Share Tech Mono', monospace;
}

.player-controls button:hover {
  background-color: #9b00ff;
  color: #000;
}

.track-info {
  color: #ccc;
  text-align: center;
  margin: 15px 0;
}

.playlist {
  width: 100%;
  list-style: none;
}

.playlist li {
  padding: 10px;
  border-bottom: 1px solid #333;
  cursor: pointer;
  transition: 0.3s;
}

.playlist li:hover {
  background-color: #111;
  color: #9b00ff;
}

.playlist li.active {
  color: #9b00ff;
  background-color: rgba(155, 0, 255, 0.1);
}

/* Back button */
.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #9b00ff;
  padding: 5px 15px;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 0.8rem;
  z-index: 2;
}

.back-btn:hover {
  background-color: #9b00ff;
  color: #000;
}

/* Floating Symbols Background */
.background-symbols {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-symbol {
  position: absolute;
  color: rgba(155, 0, 255, 0.3);
  animation: float linear forwards;
  pointer-events: none;
}

@keyframes float {
  from {
    transform: translateY(-10px) rotate(0deg);
  }
  to {
    transform: translateY(105vh) rotate(360deg);
  }
}

/* Cursor trail effect */
.cursor-trail {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(155, 0, 255, 0.7);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: cursorFade 1s ease forwards;
}

@keyframes cursorFade {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

/* Text reveal animation */
.reveal-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-line.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Audio visualizer */
.audio-reactive {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 5px;
  height: 100px;
  align-items: flex-end;
}

.audio-bar {
  width: 10px;
  background: linear-gradient(to top, #9b00ff, #ff00dd);
  border-radius: 5px;
  transition: height 0.2s ease;
}

/* Glitch effect for logo */
#glitch-logo {
  position: relative;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
  
  .slogan {
    font-size: 1rem;
  }
  
  .sobre-container {
    padding: 15px;
  }
  
  .audio-reactive {
    height: 80px;
  }
  
  .audio-bar {
    width: 8px;
  }
}

