body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  font-family: 'Trebuchet MS', sans-serif;
  background: #111;
  color: white;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #1e3c72, #2a5298);
}


.overlay {
  width: 90%;
  max-width: 700px;
  padding: 20px;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: slideDown 1s ease-in-out;
}

.subtitle {
  font-size: clamp(1rem, 4vw, 1.5rem);
  margin-bottom: 30px;
  opacity: 0.8;
}

.artist-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; 
  margin-bottom: 40px;
}

.artist-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.artist-box:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05) rotate(-2deg);
}

/* Styling for the song names under images */
.song-label {
  margin-top: 10px;
  font-weight: bold;
  font-size: 0.9em;
  color: #ffcc00; /* Gold color to stand out */
  text-shadow: 1px 1px 2px black;
}

/* Keep your existing marquee styles from before */
.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.3);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLeft 20s linear infinite; /* Slower speed for reading */
}

.slide-card {
  flex-shrink: 0;
  text-align: center;
}

.slide-card img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 50%; /* Makes them circular for a different look! */
  border: 3px solid white;
  transition: all 0.3s ease;
}

.slide-card img:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: #ffcc00;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.left {
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.right {
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}


.artist-pic {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-pic:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255,255,255,0.4);
}


.back-btn, .more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: white;
  color: #2a5298;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.back-btn:hover, .more-btn:hover {
  background: #eee;
  transform: translateY(-2px);
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


@media (max-width: 600px) {
  .blend-container {
    flex-direction: column; 
    gap: 20px;
  }
  
  .left, .right {
    mask-image: none; 
    -webkit-mask-image: none;
  }
}


/* Layout for the Gems Page */
.gems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gem-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: left;
}

.gem-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  border-color: #ffcc00;
}

.gem-badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7em;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.gem-desc {
  font-size: 0.9em;
  opacity: 0.8;
  line-height: 1.4;
  margin-bottom: 20px;
}

.listen-btn {
  display: inline-block;
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #ffcc00;
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.listen-btn:hover {
  background: #ffcc00;
  color: black;
}