* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.45);
  z-index: -3;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -2;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.card {
  width: 640px;
  min-height: 490px;
  background: rgba(15, 15, 15, 0.78);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 35px;
  position: relative;
.card {
  position: relative; /* make sure this exists */
}
}

.avatar {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.glitch {
  font-size: 36px;
  font-weight: 900;
  text-shadow: 0 0 12px white;
  animation: glitch 1.5s infinite;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, -1px); }
  80% { transform: translate(1px, 1px); }
  100% { transform: translate(0); }
}

h2 {
  font-size: 18px;
  margin-top: 8px;
}

.location {
  margin-top: 22px;
  font-size: 14px;
}

.mini-card {
  margin: 25px auto;
  width: 260px;
  background: rgba(30, 40, 45, 0.75);
  border-radius: 22px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.mini-card img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.mini-card h3 {
  font-size: 16px;
}

.mini-card span {
  font-size: 12px;
  font-weight: normal;
}

.mini-card p {
  font-size: 13px;
  color: #bbb;
  font-style: italic;
}

.links {
  position: absolute;
  bottom: 25px; /* controls how close to bottom */
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  gap: 24px;
}

.music {
  position: fixed;
  bottom: 35px;
  width: 625px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
}

.icon {
  font-size: 34px;
}

.track {
  flex: 1;
}

audio {
  width: 100%;
  height: 28px;
}

@media (max-width: 700px) {
  .card, .music {
    width: 90%;
  }
}
.links a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.links a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px white);
}