@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* ===== BACKGROUND ===== */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url(wall.jpg) no-repeat center / cover;
  z-index: -2;
  transform: scale(1.18);
  filter: blur(1px) brightness(0.75);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

/* ===== CARD ===== */

.card {
  width: 360px;
  background: rgba(20,20,20,0.92);
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(88,101,242,0.7);
  animation: pop 0.8s ease;
}

.banner {
  height: 120px;
  background: linear-gradient(135deg, #5865F2, #9b59b6);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-top: -60px;
  border: 5px solid #111;
  box-shadow: 0 0 25px rgba(88,101,242,0.8);
}

h2 {
  margin-top: 10px;
  font-size: 24px;
}

.bio {
  font-size: 14px;
  opacity: 0.85;
  padding: 10px 20px;
}

/* ===== BADGES ===== */

.badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
}

.badge {
  background: #111;
  border-radius: 8px;
  padding: 6px;
  font-size: 16px;
  box-shadow: 0 0 8px rgba(255,255,255,0.2);
}

/* ===== SPOTIFY ===== */

.spotify {
  margin: 12px;
  padding: 10px;
  background: #1db954;
  border-radius: 12px;
  font-size: 14px;
  color: #000;
}

.spotify .bar {
  height: 4px;
  background: #000;
  margin-top: 6px;
  border-radius: 10px;
  animation: music 2s linear infinite;
}

/* ===== LINKS ===== */

.links {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 15px;
}

.links a {
  font-size: 22px;
  color: #fff;
}

/* ===== SNOW ===== */

.snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20px 30px, white, transparent),
    radial-gradient(2px 2px at 80px 60px, white, transparent),
    radial-gradient(3px 3px at 140px 90px, white, transparent),
    radial-gradient(2px 2px at 200px 120px, white, transparent);
  background-size: 200px 200px;
  animation: snow 8s linear infinite;
}

/* ===== ANIMATIONS ===== */

@keyframes snow {
  from { transform: translateY(-10%); }
  to { transform: translateY(100%); }
}

@keyframes music {
  from { width: 10%; }
  to { width: 100%; }
}

@keyframes pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
