@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/bg.png");
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: white;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-family: 'Press Start 2P', sans-serif;
}

.logo {
  font-size: 24px;
  color: #ff007f;
  text-shadow: 0px 0px 10px #ff007f, 0px 0px 20px #ff007f;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, text-shadow 0.3s ease; /* Smooth hover effect */
}

.nav-links a:hover {
  color: #00ffff;
  text-shadow: 0px 0px 10px #00ffff, 0px 0px 20px #00ffff;
}


.black-box {
  background: black;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  width: 90%;
  max-width: 960px;
  margin: auto;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.black-box::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid;
  border-image-source: linear-gradient(45deg, #ff007f, #ff8c00, #8a2be2, #00ffff);
  border-image-slice: 1;
  border-radius: 15px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(0, 255, 255, 0.2));
  filter: blur(2px);
}

/* Content */
.content {
  border-radius: 10px;
  padding: 20px;
}

.content p {
  margin-bottom: 15px;
  line-height: 1.6; 
}

.content h1 {
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0px 0px 10px #ff007f, 0px 0px 200px #ff007f;
  color: white;
}

.image-container {
  text-align: center;
  margin: 20px 0;
}

.image-container img {
  width: 100%;
  max-width: 600px;
}


.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
}

.poster {
  width: 40%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(255, 0, 127, 0.5);
}

.article {
  width: 55%;
}

.article h2 {
  font-family: 'Press Start 2P', sans-serif;
  font-size: 20px;
  color: #ff007f;
  text-shadow: 0px 0px 10px #ff007f, 0px 0px 20px #ff007f;
  margin-bottom: 15px;
}

.article p {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Music */
.track {
  margin-bottom: 30px;
  padding: 10px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.5);
}

.track h2 {
  font-family: Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #00ffff;
}

audio {
  width: 100%;
  margin-top: 10px;
}

/* Artists */
.artist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.artist-card {
  background: #1a1a1a;
  border-radius: 15px;
  box-shadow: 0px 0px 20px rgba(255, 0, 127, 0.5);
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: 'Press Start 2P', sans-serif;
}

.artist-card:hover {
  transform: translateY(-10px); /* Lift effect */
  box-shadow: 0px 0px 30px rgba(0, 255, 255, 0.7);
}

.artist-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.artist-card h2 {
  font-size: 20px;
  color: #ff007f;
  margin-bottom: 10px;
}

.artist-card p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
