* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* VIDEO */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* CARD */
.card {
  position: relative;
  z-index: 2;
  width: 360px;
  padding: 28px;
  border-radius: 26px;
  text-align: center;
  background: rgba(0,0,0,0.45);
  backdrop-filter: none;
  box-shadow: 0 30px 100px rgba(0,0,0,0.9);
}

/* PFP */
.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,255,255,0.4);
}

/* TEXT */
.name {
  font-size: 24px;
  margin-bottom: 6px;
}

.about {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* SKILLS */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.skills span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-size: 12px;
}

/* ========================= */
/* BUTTON BASE STYLE */
/* ========================= */

.insta,
.spotify {
  display: block;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* INSTAGRAM */
.insta {
  background: linear-gradient(135deg, #ff5fa2, #ff2f7a);
  box-shadow: 0 0 40px rgba(255,80,150,0.9);
}

.insta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255,80,150,1);
}

/* SPOTIFY */
.spotify {
  background: #1DB954;
  box-shadow: 0 0 40px rgba(30,215,96,0.9);
}

.spotify:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(30,215,96,1);
}

/* ICON SPACING */
.insta i,
.spotify i {
  margin-right: 8px;
}

footer {
  margin-top: 16px;
  font-size: 11px;
  opacity: 0.6;
}

