* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: "Inter", sans-serif;
  color: white;
  overflow-x: hidden;
}


.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.65);
  transform: scale(1.05);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 20px 20px;
  max-width: 1100px;
  margin: 0 auto;
}


.follow-page .profile-container {
  justify-content: center; 
}

.main-page .profile-container {
  justify-content: flex-start; 
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s ease;
}

.profile-pic:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.profile-pic:hover img {
  transform: scale(1.08) rotate(0.5deg);
}

h1 { 
  font-size: 2rem; 
  font-weight: 700; 
}

p { 
  font-size: 1.1rem; 
  opacity: 0.85; 
  max-width: 600px; 
}

.socials {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 5px;
}

.main-page .socials {
  margin-top: 15px;
}

.follow-page .socials {
  margin-top: 61px;
  margin-bottom: 15px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
  cursor: pointer;
}

.socials a:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.15);
}

.release-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  max-width: 900px;
}

.release-card {
  width: 350px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: transform 0.25s;
  cursor: grab;
  position: relative;
}

.release-card:active { cursor: grabbing; }

.release-card:hover {
  transform: scale(1.02);
}

.release-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.2;
}

.release-card p {
  margin-top: 5px;
  opacity: 0.8;
  font-size: 1rem;
  line-height: 1.3;
}

.release-card a {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
  text-decoration: none;
}

.release-card a img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.release-card a img:hover {
  transform: scale(1.08) rotate(0.5deg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.release-card a.button {
  padding: 10px 22px;
  border-radius: 50px;
  color: white;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  transition: 0.25s;
}

.release-card a.button:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.cover-art {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cover-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.cover-art:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.cover-art:hover img {
  transform: scale(1.08) rotate(0.5deg);
}

.song-info {
  text-align: center;
  margin-bottom: 25px;
}

.song-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  margin: 5;
}

.artist-names {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 5px;
}

.artist-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;  
}


.artist-link.nottheone:hover {
  color: #7c8674;
}

.artist-link.fwiw:hover {
  color: #8496d0;
}

.bio-text {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;  
}

.music-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 310px;
  margin-bottom: 0;
}

.music-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 1.1rem;
  transition: 0.25s;
  backdrop-filter: blur(10px);
  justify-content: flex-start;
}

.music-link i {
  width: 28px;
  text-align: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.music-link span {
  flex: 1;
  text-align: left;
  margin-left: 8px;
}

.music-link:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.03);
}
