* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a, button {
  cursor: url('stuff/point.cur'), pointer;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  font-family: 'Quicksand', sans-serif;
  overflow: hidden;
  cursor: url('stuff/cur.cur'), auto;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
}

#enter {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px) brightness(0.4);
  -webkit-backdrop-filter: blur(10px) brightness(0.4);
  cursor: url('stuff/point.cur'), pointer;
  transition: opacity 0.6s ease;
}

#enter.gone {
  opacity: 0;
  pointer-events: none;
}

#enter-text {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

#card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(18, 18, 20, 0.88);
  border-radius: 18px;
  padding: 26px;
  width: 540px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
  transform-style: preserve-3d;
}

#profile {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

#pfp {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

#profile-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 3px;
}

#name {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.55);
  line-height: 1;
}

#bio {
  color: #d0d0d0;
  font-size: 0.93rem;
  font-weight: 500;
}

#pronouns {
  color: #777;
  font-size: 0.83rem;
  font-weight: 500;
}

#socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 2px;
}

.social-icon {
  color: #777;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}

.social-icon:hover {
  color: #fff;
}

#player {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(18, 18, 20, 0.88);
  border-radius: 14px;
  padding: 14px 50px 38px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#player.visible {
  opacity: 1;
  pointer-events: all;
}

#player-art {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: #1a1a1a;
  flex-shrink: 0;
}

#player-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#player-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  display: block;
}

#player-artist {
  color: #777;
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
}

#player-btn {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: url('stuff/point.cur'), pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.15s;
}

#player-btn:hover {
  color: #aaa;
}

