body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #0d0f11, #14181c);
  color: white;
}

.header {
  text-align: center;
  padding: 24px 20px;
}

.header h1 {
  margin: 0;
  font-size: 2.2rem;
}

.header p {
  margin-top: 10px;
  color: #d7e2dc;
}

.hero {
  min-height: 420px;
  background: linear-gradient(to right, #0f1113, #1a1e22);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 60px;
}

.hero-text {
  text-align: left;
}

.hero-text h2 {
  margin-bottom: 14px;
  font-size: 3rem;
}

.hero-text p {
  margin-bottom: 18px;
  color: #d7e2dc;
  font-size: 1.2rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(152, 255, 207, 0.18);
}

.music-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
}

.music-player {
  background: #1a1e22;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(152, 255, 207, 0.08);
  width: 340px;
  text-align: center;
}

.music-player h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 2rem;
}

.music-player h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.music-player p {
  margin-bottom: 16px;
  color: #d7e2dc;
}

.music-player button {
  padding: 12px 24px;
  background: #98ffcf;
  color: #0d0f11;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.music-player audio {
  display: none;
}

.artists {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.artist-card {
  display: block;
  background: #1a1e22;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 20px rgba(152, 255, 207, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(152, 255, 207, 0.14);
}

.artist-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.artist-info {
  padding: 16px;
  text-align: center;
}

.artist-info h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.artist-info p {
  margin: 0;
  color: #d7e2dc;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .artists {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .artists {
    grid-template-columns: 1fr;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .music-player {
    width: 100%;
    max-width: 340px;
  }
}
.artist-hero {
  min-height: 480px;
  background: linear-gradient(to right, #0f1113, #1a1e22);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 50px 60px;
}

.artist-hero-text {
  text-align: left;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #98ffcf;
  text-decoration: none;
  font-weight: bold;
}

.back-link:hover {
  text-decoration: underline;
}

.artist-hero-text h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.artist-subtitle {
  font-size: 1.2rem;
  color: #98ffcf;
  margin-bottom: 16px;
}

.artist-description {
  color: #d7e2dc;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.artist-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.artist-hero-image img {
  width: 360px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(152, 255, 207, 0.18);
}

.artist-featured-track {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px 30px;
}

.track-card {
  background: #1a1e22;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(152, 255, 207, 0.08);
  width: 360px;
  text-align: center;
}

.track-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 2rem;
}

.track-card h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.track-card p {
  margin-bottom: 18px;
  color: #d7e2dc;
}

.track-card button {
  padding: 12px 24px;
  background: #98ffcf;
  color: #0d0f11;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.track-card audio {
  display: none;
}

.artist-links-section {
  text-align: center;
  padding: 20px 40px 50px;
}

.artist-links-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.artist-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.stream-link {
  display: inline-block;
  padding: 12px 22px;
  background: #1a1e22;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(152, 255, 207, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stream-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(152, 255, 207, 0.12);
}

.artist-gallery {
  padding: 20px 40px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-gallery h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-card {
  background: #1a1e22;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(152, 255, 207, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.gallery-card img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  background: #0d0f11;
}

@media (max-width: 900px) {
  .artist-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .artist-hero-text {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .artist-hero {
    padding: 40px 24px;
  }

  .artist-hero-text h2 {
    font-size: 2.2rem;
  }

  .track-card {
    width: 100%;
    max-width: 360px;
  }

  .gallery-card img {
    height: 360px;
  }
}
.stream-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stream-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(152, 255, 207, 0.2);
}
.artist-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(152, 255, 207, 0.2);
}
.about-platform {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 40px 20px;
}

.about-card {
  background: #1a1e22;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 0 24px rgba(152, 255, 207, 0.08);
}

.about-card h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #98ffcf;
}

.about-card p {
  color: #d7e2dc;
  line-height: 1.7;
  margin-bottom: 18px;
}
.songwriter-section,
.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 40px 20px;
}

.contact-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.artist-featured-track .track-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.song-item {
  background: #1a1e22;
  border-radius: 14px;
  padding: 20px;
  width: calc(50% - 10px);
  box-sizing: border-box;
}

.song-item h2 {
  margin-top: 0;
  color: #98ffcf;
}

.song-item button {
  margin-top: 10px;
}
.artist-featured-track .track-card {
  width: 90%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.artist-featured-track .track-card h3 {
  grid-column: 1 / -1;
  text-align: center;
}

.song-item {
  background: #1a1e22;
  border-radius: 14px;
  padding: 20px;
  box-sizing: border-box;
  width: auto;
}

.song-item h2 {
  margin-top: 0;
  color: #98ffcf;
}

.song-item button {
  margin-top: 10px;
}

@media (max-width: 700px) {
  .artist-featured-track .track-card {
    grid-template-columns: 1fr;
  }
}