html {
  font-size: 75%; /* 1rem ≈ 14.4px (instead of zoom:0.9) */
  scroll-behavior: smooth;
}

/* === Container === */
#profile-container {
  max-width: 720px;
  margin: 5rem auto 4rem;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.1);
  overflow: hidden;
  outline-offset: 4px;
  transition: box-shadow 0.3s ease;
}

#profile-container:focus {
  box-shadow: 0 0 0 4px #4c9aff;
  outline: none;
}

/* === Cover Image === */
.profile-cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  display: block;
  transition: filter 0.3s ease;
}

.profile-cover:hover,
.profile-cover:focus {
  filter: brightness(1);
  outline: none;
}

/* === Info Section === */
.profile-info {
  padding: 1rem 2rem 2rem;
}

/* Artist Name */
.artist-name {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #242424;
  line-height: 1.1;
}

/* Meta info */
.profile-meta {
  font-size: 1rem;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 1.8rem;
  font-weight: bold;
  user-select: none;
}

.profile-meta span {
  white-space: nowrap;
}

/* Description */
.profile-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #444;
  max-width: 760px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  user-select: text;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f2f2f2;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.08);
  transition: background-color 0.3s ease, transform 0.15s ease;
  outline-offset: 3px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
}

.social-icons a:hover,
.social-icons a:focus {
  background-color: #e5e5e5;
  transform: translateY(-3px);
  outline: none;
}

.social-icons a:hover img,
.social-icons a:focus img {
  filter: none;
  filter: brightness(100%) saturate(120%);
}

/* === Back Link === */
.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #242424;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.25s ease, box-shadow 0.3s ease;
  user-select: none;
}

.back-link:hover,
.back-link:focus {
  background-color: #e5e5e5;
  outline: none;
}


/* === Responsive === */
@media (max-width: 768px) {
  #profile-container {
    margin: 1.5rem 1rem 3rem;
    border-radius: 0.75rem;
  }

  .profile-cover {
    height: 220px;
    border-radius: 0.75rem 0.75rem 0 0;
  }

  .artist-name {
    font-size: 2.5rem;
  }

  .profile-meta {
    flex-direction: column;
    gap: 0.75rem 0;
  }

  .profile-description {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .social-icons {
    justify-content: left;
  }

  .profile-meta span {
    white-space: normal;
  }


}