@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coming+Soon&display=swap');

h1 {
    font-family: "Coming Soon", cursive;
    font-weight: 400;
    font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: url('assets/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.profile-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #833AB4;
  object-fit: cover;
}

.name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.bio {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  opacity: 0.9;
}

.links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.link-icon {
  color: #fff;
  font-size: 2rem;
  transition: transform 0.3s, color 0.3s;
  text-decoration: none;
}

.link-icon:hover {
  transform: scale(1.2);
  color: #833AB4;
}

.music-icon {
  font-size: 1rem;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  opacity: 0.8;
}

.music-icon:hover {
  transform: scale(1.1);
  color: #833AB4;
  opacity: 1;
}

.music-info {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .profile-card {
    padding: 20px;
  }
  .name {
    font-size: 1.5rem;
  }
  .links {
    gap: 15px;
  }
  .link-icon {
    font-size: 1.5rem;
  }
}