: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: #020105;
  z-index: -1;
  overflow: hidden;
}

.vibe-background::before,
.vibe-background::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  pointer-events: none;
}

.vibe-background::before {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  background-image: 
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 25% 40%, rgba(144, 202, 249, 0.4), transparent),
    radial-gradient(1px 1px at 45% 15%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 60% 80%, rgba(144, 202, 249, 0.3), transparent),
    radial-gradient(2px 2px at 75% 35%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 88% 65%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 280px 280px;
  animation: deep-space-rotation 220s linear infinite;
  opacity: 0.85;
}

.vibe-background::after {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  background-image: 
    radial-gradient(1px 1px at 20% 70%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 50% 60%, rgba(173, 232, 244, 0.35), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 390px 390px;
  animation: deep-space-rotation 160s linear infinite reverse;
  opacity: 0.75;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(0, 55, 160, 0.22) 0%, rgba(2, 8, 30, 0.05) 60%, transparent 80%);
  filter: blur(110px);
  top: -25%;
  left: -10%;
  animation: blue-nebula-drift-a 45s infinite alternate ease-in-out;
}

.orb-2 {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 80, 180, 0.16) 0%, rgba(1, 4, 25, 0.02) 50%, transparent 75%);
  filter: blur(100px);
  bottom: -20%;
  right: -10%;
  animation: blue-nebula-drift-b 50s infinite alternate-reverse ease-in-out;
}

@keyframes deep-space-rotation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes blue-nebula-drift-a {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.06); }
}

@keyframes blue-nebula-drift-b {
  0% { transform: translate(0, 0) scale(0.95); }
  100% { transform: translate(-40px, -40px) scale(1.05); }
}

.neon-text {
  color: #fff;
  text-shadow: 0 0 10px rgba(144, 202, 249, 0.5), 0 0 20px rgba(144, 202, 249, 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(144, 202, 249, 0.8)) 
          drop-shadow(0 0 20px rgba(144, 202, 249, 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(144, 202, 249, 0.8));
  }
  20%, 24%, 55% { 
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(144, 202, 249, 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;
  font-family: "Roboto", sans-serif;
  z-index: 10;
}

.roboto-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.top-center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.music-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px !important; 
  width: 100%;
}

.music-container .artist-platforms-row {
  margin-top: 5px;
  margin-bottom: 20px;
}

.cards-wrapper .artist-platforms-row {
  grid-column: 1 / -1; 
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 3fr));
  justify-content: center;
  justify-items: center;
  gap: 35px 25px;
  width: 90%;
  max-width: 750px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px 30px;
  animation: 
    wrapperFadeIn 1s ease-out forwards, 
    neonPulse 4s infinite ease-in-out;
}

.card-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 200px;
}

.track-title {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.3px;
  white-space: normal;
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-group:hover .track-title {
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  transform: scale(1.04);
}

@keyframes wrapperFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neonPulse {
  0%, 100% {
    border: 1px solid rgba(144, 202, 249, 0.15);
    box-shadow: 
      0 10px 40px rgba(0, 0, 0, 0.6), 
      0 0 20px rgba(144, 202, 249, 0.15), 
      0 0 40px rgba(144, 202, 249, 0.05);
  }
  50% {
    border: 1px solid rgba(144, 202, 249, 0.3);
    box-shadow: 
      0 10px 40px rgba(0, 0, 0, 0.6), 
      0 0 30px rgba(144, 202, 249, 0.3),  
      0 0 50px rgba(144, 202, 249, 0.15);
  }
}

.release-label {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.95rem;
  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(144, 202, 249, 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(144, 202, 249, 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:hover {
  background: rgba(144, 202, 249, 0.1);
  border-color: rgba(144, 202, 249, 0.4);
  box-shadow: 0 0 15px rgba(144, 202, 249, 0.2);
}

.menu-btn {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.line {
  width: 20px;
  height: 2px;
  background: #ffffff;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}

.menu-btn.open .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.open .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.open .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dropdown {
  position: absolute;
  top: 65px;
  right: 0;
  list-style: none;
  padding: 12px 0; /* Balanced wrapper padding */
  margin: 0;
  width: 200px; /* Expanded slightly to handle the labels */
  background: rgba(10, 10, 10, 0.65); 
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(144, 202, 249, 0.25);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.7),
    0 0 15px rgba(144, 202, 249, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 10px 24px; /* Tighter padding for structural blocks */
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.dropdown li a:hover {
  color: #ffffff;
  background: rgba(144, 202, 249, 0.15);
  padding-left: 30px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* --- SECTION SPLIT CONTROLS --- */
.menu-section-top, 
.menu-section-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.menu-header-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(144, 202, 249, 0.7); /* Neon accent theme title label */
  padding: 6px 24px;
  font-weight: 700;
  pointer-events: none;
}

.menu-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  width: 80%;
  margin: 10px auto;
}

/* --- HOME PAGE PORTAL BACK PANELS --- */
.home-container {
  margin-top: 12%;
}

.home-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(144, 202, 249, 0.15);
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.6), 
    0 0 30px rgba(144, 202, 249, 0.1);
  animation: wrapperFadeIn 1s ease-out forwards;
}

.portal-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.portal-section .release-label {
  display: block;
  text-align: center;
  height: 25px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.4rem;
}

.artist-platforms-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: -10px;
  animation: wrapperFadeIn 1.2s ease-out forwards;
}

.platform-link-node {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.platform-link-node:hover {
  color: #ffffff;
  background: rgba(144, 202, 249, 0.15);
  border-color: rgba(144, 202, 249, 0.5);
  box-shadow: 0 0 15px rgba(144, 202, 249, 0.3);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px); /* Slight premium upward pop */
}