body {
  font-family: 'Be Vietnam Pro', sans-serif;
  margin: 0;
  min-height: 100vh;
  color: #fff;
  position: relative;
  overflow-x: hidden;

  background-image: url('img/nen16.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(23,23,22,0.4), #0000000d 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: spotlightMove 15s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(255,215,102,0.15), rgba(0,0,0,0.7) 80%);
  mix-blend-mode: overlay;
  filter: blur(80px);
  animation: spotlightMove 20s ease-in-out infinite alternate-reverse;
}

@keyframes spotlightMove {
  0% { background-position: 40% 20%; }
  100% { background-position: 60% 25%; }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

header.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, rgba(44,24,24,0.8), rgba(123,40,40,0.6));
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}

header h1 {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(90deg, #fff8c0, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


header p {
  font-style : italic; 
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@keyframes glowPulse {
  0% {
    text-shadow:
      0 2px 8px rgba(0,0,0,0.6),
      0 0 10px rgba(255,215,102,0.6),
      0 0 20px rgba(255,140,0,0.5);
  }
  50% {
    text-shadow:
      0 2px 12px rgba(0,0,0,0.7),
      0 0 20px rgba(255,215,102,0.9),
      0 0 40px rgba(255,140,0,0.7);
  }
  100% {
    text-shadow:
      0 2px 8px rgba(0,0,0,0.6),
      0 0 10px rgba(255,215,102,0.6),
      0 0 20px rgba(255,140,0,0.5);
  }
}

.music-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 2rem 1rem 3rem 1rem;
  z-index: 1;
  position: relative;
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,235,180,0.15), rgba(255,200,100,0.1));
  backdrop-filter: blur(12px) saturate(1.3);
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 0 40px rgba(255,215,102,0.2);
  transition: transform 0.5s, box-shadow 0.5s, background 0.5s;
}

.artist-card:hover {
  transform: translateY(-18px) rotateX(2deg);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.7),
    0 0 60px rgba(255,215,102,0.4) inset;
  background: rgba(255,235,180,0.3);
}

.artist-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s, filter 0.6s;
}

.artist-card:hover img {
  transform: scale(1.1) rotateZ(-1deg);
  filter: brightness(1.12) contrast(1.08);
}

.artist-card h3 {
  margin: 0.5rem 1rem 0.25rem 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.artist-card audio {
  width: calc(100% - 2rem);
  margin: 0.5rem 1rem 1rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
  header h1 { font-size: 2rem; }
  header p { font-size: 1rem; }
  .artist-card img { height: 180px; }
  .artist-card h3 { font-size: 1.3rem; }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  margin : 20px;
}

.navbar ul {
  display: flex;
  gap: 26px;
  list-style: none;
}

.navbar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar a:hover,
.navbar a.active {
  background: rgba(197,191,101,0.12);
  color: #fff;
}
.back{
    display:inline-block;
  margin:20px;
  padding:12px 22px;
  background:#b88647;
  color:#fff;
  text-decoration:none;
  border-radius:14px;
  font-weight:bold;
  font-size:17px;
  box-shadow:0 4px 10px rgba(0,0,0,.4);
  transition:.25s;
}

.back:hover{
  background:#d3a561;
  transform:translateX(-4px);
  box-shadow:0 6px 14px rgba(0,0,0,.5);
}