:root {
  --bg: #030303;
  --surface: #030303;
  --text: #f0f0f0;
  --accent: #03dac6;
}

body {
  background-color: var(--bg);
  color: var(--text);
}

.card {
  background-color: var(--surface);
  border: 1px solid #444;
  padding: 15px;
  border-radius: 8px;
}

html {
  color-scheme: dark;
}

body::after {
  content: "";
  position: fixed;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg'); 
  opacity: 0.04;
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
  z-index: 9999;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  50% { transform: translate(-15%, 10%); }
  70% { transform: translate(0%, 15%); }
  90% { transform: translate(-10%, 10%); }
}

.vibe-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #030303;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.orb-1 {
  background: #1a0033;
  top: -10%;
  left: -10%;
  animation: drift 20s infinite alternate ease-in-out;
}

.orb-2 {
  background: #001a33;
  bottom: -10%;
  right: -10%;
  animation: drift 25s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(100px, 50px) scale(1.1); }
}

.neon-text {
  color: #fff;
  text-shadow: 0 0 10px rgba(186, 35, 184, 0.5), 0 0 20px rgba(186, 35, 184, 0.5);
  animation: flicker 4s infinite;
  align-items: center;
}

.neon-logo {
  margin-top: -55px;
  width: 250px;
  height: auto;
  
  filter: drop-shadow(0 0 10px rgba(186, 35, 184, 0.8)) 
          drop-shadow(0 0 20px rgba(186, 35, 184, 0.4));
  
  animation: logo-flicker 4s infinite;
  display: block;
}

@keyframes logo-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { 
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(186, 35, 184, 0.8));
  }
  20%, 24%, 55% { 
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(186, 35, 184, 0.3));
  }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.6; }
}

.top-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: -1vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.top-center-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: -1vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.music-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15%;
  gap: 15px;
}

.release-label {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.album-card {
  position: relative;
  width: 200px;
  height: 200px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 
              0 0 20px rgba(186, 35, 184, 0.1);
  
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.album-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.album-card:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 
              0 0 30px rgba(186, 35, 184, 0.3);
}

.album-card:hover .album-art {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.album-card:hover .card-overlay {
  opacity: 1;
}

.card-overlay span {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 10px 20px;
}

.top-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.menu-container {
  position: relative;
}

.menu-btn {
  background: rgba(140, 140, 140, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.line {
  width: 19px;
  height: 1px;
  background: #fff;
  display: block;
}

.dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 12px;
  width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.2s;
}

.dropdown li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 25px;
}