.artist-page {
  position: relative;
  min-height: 100vh;
  padding: 70px 20px;
  overflow: hidden;
}

.artist-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(90, 245, 160, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(31, 173, 99, 0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #020403 0%,
      #06140d 45%,
      #020403 100%
    );
  z-index: -2;
}

.artist-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(90, 245, 160, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(90, 245, 160, 0.03) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  z-index: -1;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    transparent
  );
}

.artist-wrapper {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.artist-hero {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.artist-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(90, 245, 160, 0.18);
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

.artist-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
  padding: 35px;
  border: 1px solid rgba(90, 245, 160, 0.24);
  border-radius: 28px;
  background: rgba(3, 14, 9, 0.86);
  box-shadow:
    0 0 35px rgba(90, 245, 160, 0.08),
    inset 0 0 35px rgba(90, 245, 160, 0.04);
  backdrop-filter: blur(10px);
}

.artist-image-box {
  position: relative;
  width: 180px;
  flex: 0 0 180px;
  box-sizing: border-box;
  padding: 7px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    #5af5a0,
    #1fad63,
    #06140d
  );
  box-shadow: 0 0 28px rgba(90, 245, 160, 0.2);
}

.artist-image-box::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 12px;
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.artist-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.artist-info {
  flex: 1;
  min-width: 0;
  color: #d9ffe9;
}

.artist-info h1 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(90, 245, 160, 0.3);
}

.artist-subtitle {
  margin: 10px 0 0;
  color: #5af5a0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.artist-line {
  width: 90px;
  height: 2px;
  margin: 18px 0;
  background: linear-gradient(
    90deg,
    #5af5a0,
    transparent
  );
  border-radius: 999px;
}

.artist-info p {
  margin: 0 0 13px;
  color: #bfffd8;
  font-size: 15px;
  line-height: 1.7;
}

.artist-info strong {
  color: #ffffff;
}

.artist-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.artist-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 105px;
  box-sizing: border-box;
  padding: 9px 14px;
  color: #5af5a0;
  border: 1px solid rgba(90, 245, 160, 0.55);
  border-radius: 10px;
  background: rgba(90, 245, 160, 0.05);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.artist-socials a:hover {
  color: #06140d;
  background: #5af5a0;
  box-shadow: 0 0 20px rgba(90, 245, 160, 0.3);
  transform: translateY(-2px);
}

.artist-socials a[href*="youtube.com"] {
  color: #ffffff;
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.28);
}

.artist-socials a[href*="youtube.com"]:hover {
  color: #ffffff;
  background: #cc0000;
  border-color: #cc0000;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.45);
  transform: translateY(-2px);
}

.artist-playlist-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 45px;
  border: 1px solid rgba(90, 245, 160, 0.24);
  border-radius: 28px;
  background: rgba(3, 14, 9, 0.86);
  box-shadow: 0 0 35px rgba(90, 245, 160, 0.08);
}

.playlist-title {
  margin: 0 0 35px;
  color: #00ff99;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(90, 245, 160, 0.25);
}

@media (max-width: 760px) {
  .artist-card {
    gap: 22px;
    padding: 25px;
  }

  .artist-image-box {
    width: 145px;
    flex-basis: 145px;
  }

  .artist-info h1 {
    font-size: 29px;
  }

  .artist-info p {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .artist-page {
    padding: 40px 12px;
  }

  .artist-card {
    flex-direction: column;
    align-items: center;
    padding: 22px;
    border-radius: 20px;
  }

  .artist-image-box {
    width: 150px;
    flex: none;
  }

  .artist-info {
    width: 100%;
    text-align: center;
  }

  .artist-info h1 {
    font-size: 28px;
  }

  .artist-line {
    margin-left: auto;
    margin-right: auto;
  }

  .artist-socials {
    justify-content: center;
  }

  .artist-socials a {
    min-width: 100px;
  }

  .artist-playlist-section {
    padding: 22px;
    border-radius: 20px;
  }

  .playlist-title {
    font-size: 24px;
  }
}