body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("images/bg.jpg");
  background-attachment: fixed;
  color: white;
  overflow-x: hidden;
}

.bg-animated {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('https://media.githubusercontent.com/media/JulianCataldo/particles-bg/main/public/animated-network.svg') no-repeat center center;
  background-size: cover;
  opacity: 0.25;
}

.bg-orbit {
  position: fixed;
  inset: -40%;
  z-index: -3;
  background: conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0.12), transparent 28%, rgba(255, 255, 255, 0.06) 55%, transparent 80%);
  animation: orbitSpin 50s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.bg-dust {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: dustDrift 30s linear infinite;
  opacity: 0.25;
}

.bg-snow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 120px 120px, 200px 200px;
  background-position: 0 0, 60px 40px;
  animation: snowFall 24s linear infinite;
  opacity: 0.35;
}

@keyframes orbitSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dustDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 80px;
  }
}

@keyframes snowFall {
  0% {
    background-position: 0 0, 60px 40px;
  }
  100% {
    background-position: 0 220px, 60px 320px;
  }
}

.container {
  max-width: 600px;
  margin: 80px auto;
  padding: 24px;
  background-color: rgba(15, 15, 30, 0.3);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 0 0 45px rgba(168, 96, 96, 0.5);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  
}

.title {
  font-size: 24px;
  font-weight: 600;
}

.title-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bio-text {
  margin-top: 8px;
  font-size: 14px;
  color: #efe6e6;
  opacity: 0.8;
}

.profile-pfp {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.profile-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subtitle {
  color: #bbb;
  margin-top: 4px;
}

.button {
  display: block;
  margin: 12px auto;
  padding: 10px 20px;
  background: rgba(40, 20, 20, 0.5);
  border: 3px solid #ffffff;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
  width: 80%;
}

.button:hover {
  background: rgba(108, 57, 57, 0.5);
}

.music-player {
  margin-top: 24px;
  background: rgba(40, 20, 20, 0.5);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 3px solid #ffffff;
}

.song-info {
  flex: 1;
}

.song-title {
  font-weight: 700;
  font-size: 18px;
}

.song-artist {
  color: #bbb;
  font-size: 14px;
  margin-top: 2px;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-btn {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: 0.2s;
  padding: 6px;
}

.player-btn:hover {
  color: #1ac4f8;
}

.play-btn {
  font-size: 36px;
}

.song-cover {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.progress-container {
  width: 90%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 10px auto;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: #1ac4f8;
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #bbb;
  width: 90%;
  margin: 0 auto;
}

.player-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}

.volume-slider {
  width: 80px;
  -webkit-appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1ac4f8;
  cursor: pointer;
}

 .social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 8px 0 6px;
}

.social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(40, 20, 20, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  position: relative;
  cursor: pointer;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(108, 57, 57, 0.5);
}

.social-btn:hover .social-icon {
  color: #1ac4f8;
}

.social-icon {
  width: 22px;
  height: 22px;
}

.social-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover .social-tooltip,
.social-btn.show-tooltip .social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.note {
  margin-top: 16px;
  color: #888;
  font-size: 12px;
}


#links-discord {
  width: 560px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 20px;
}

.discord-avatar {
  width: 65px;
  height: 65px;
  border-radius: 15%;
  border: 3px solid #e1e1e1;
}

hr {
  margin: 20px 0;  
  border: none;
  height: 4px;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(91, 91, 91));
}

#links-discord h2 {
  margin: 0;
  font-size: 1.2em;
}

#links-discord h3 {
  margin: 3px;
  font-size: 0.9em;
  opacity: 0.8;
}

.discord-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.discord-name-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1ac4f8;
  transform: translateY(1px);
}

.verified-icon {
  width: 28px;
  height: 28px;
}

.verified-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  top: -34px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.verified-badge:hover .verified-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.discord-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 0 0;
  font-size: 0.9em;
  opacity: 0.8;
}

.discord-handle {
  margin: 3px 0 0 0;
  font-size: 0.9em;
  opacity: 0.85;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #80848e;
  box-shadow: 0 0 6px rgba(128, 132, 142, 0.6);
}
  
  .overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 90%;
  }
  
  .overlay-text {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  
  #card {
    transform-style: preserve-3d;
    transform: perspective(5000px) rotateY(var(--rotateX)) rotateX(var(--rotateY));
  }
  
  .invalid_photo {
    width: 20px;
    height: 20px;
  }

  .text {
    color: #ffffff;
  }
