@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Unbounded', sans-serif;
  background: #0d0d0d;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.container {
  margin-top: 60px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

h1 {
  margin-bottom: 8px;
  font-size: 28px;
  color: #fff;
}

p.bio {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 30px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  margin: 10px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.03);
}

.link i {
  font-size: 18px;
}

.scroll-down {
  margin-top: 20px;
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-down i {
  font-size: 32px;
  color: #888;
  transition: color 0.3s ease;
}

.scroll-down i:hover {
  color: #fff;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}

.now-playing {
  margin-top: 40px;
  width: 90%;
  max-width: 500px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  user-select: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 15px;
}
.now-playing img {
  border-radius: 12px;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(179, 184, 186, 0.7);
}
.now-playing .info {
  text-align: left;
}
.now-playing .info a {
  color: #bec2c4;
  text-decoration: none;
  font-weight: 700;
}
.now-playing .info a:hover {
  text-decoration: underline;
}
.now-playing .nowplaying-label {
  color: #a4a6a8;
  font-weight: 700;
  margin-bottom: 6px;
}

.projects {
  margin-top: 60px;
  width: 90%;
  max-width: 700px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.projects h2 {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.project-item {
  background: rgba(255,255,255,0.08);
  padding: 16px;
  margin: 10px 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.project-item a {
  color: #dbdbdb;
  text-decoration: none;
  font-weight: bold;
}

.project-item p {
  margin-top: 6px;
  color: #bbb;
  font-size: 14px;
}

footer {
  margin: 50px 0 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

