body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0c29;
  color: #f5f5f5;
}

.full-section {
  width: 100%;
  padding: 60px 80px;
}

.hero {
  position: relative;
  width: 100%;
}

.cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(55%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.artist-name {
  font-size: 3rem;
  margin: 0;
}

.stage-name {
  color: #1db954;
  margin-top: 5px;
  font-size: 1.6rem;
}

.tagline {
  margin-top: 10px;
  font-size: 1.1rem;
}

.main-nav {
  background: #000;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
}

.main-nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.profile-pic {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
}

#about {
  padding-bottom: 5px;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}


/* Artist Pick desktop version unchanged */
.artist-pick-block {
  width: 50%;
  padding: 40px 0;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artist-pick-block iframe {
  width: 100%;
  height: 420px;
  max-width: 100%;
  border: none;
  border-radius: 12px;
  display: block;
  background: #111;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

.featured-block {
  margin-top: 60px;
}

.song-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.song-frame {
  width: 100%;
  height: 330px;
  border-radius: 12px;
  background: #111;
}

.highlight {
  border: 2px solid #1db954;
}

.profile-links {
  text-align: center;
  margin-top: 60px;
  font-size: 24px;
}
  a {
  text-decoration: none;
}
.icon {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  margin: 0 8px;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

input[type="email"] {
  flex: 1;
  padding: 12px;
  border-radius: 5px;
  border: none;
}

button {
  padding: 12px 20px;
  background: #1db954;
  border-radius: 5px;
  border: none;
  color: #000;
  font-weight: bold;
}

footer {
  width: 100%;
  text-align: center;
  padding: 30px;
  background: #000;
  margin-top: 40px;
}

.ticker {
  width: 100%;
  background: #0044cc;
  padding: 12px 0;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}

/* Tablet */
@media (max-width: 900px) {
  .song-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .cover {
    height: 300px;
  }
}

/* Mobile fix only */
@media (max-width: 600px) {

  .full-section {
    padding: 40px 20px;
  }

  .song-grid {
    grid-template-columns: 1fr;
  }

  .artist-pick-block {
    width: 100%;
    max-width: 100%;
    padding-top: 5px;
  }

  .artist-pick-block iframe {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
  }
}
