* {
  cursor: url('images/cursor.png') 32 32, auto;
}

body {
  margin: 0;
  font-family: 'Fira Code', monospace;
  color: white;
  overflow-x: hidden;
  position: relative;
  background: #ff81ff;
}

.bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

.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;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 80px auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 0 0 45px #ff81ff;
  border: 2px solid #ff81ff;
  text-align: center;
  transition: transform 0.32s cubic-bezier(.22,1,.36,1), box-shadow 0.32s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.container:hover {
  transform: scale(1.08) translateY(-12px);
  box-shadow: 0 0 80px rgba(255,129,255,0.3);
}

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

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

.button {
  display: block;
  margin: 12px auto;
  padding: 10px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(255,105,180,0.55));
  border: 3px solid #ff81ff;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
  width: 80%;
}

.button:hover {
  background: linear-gradient(0deg, rgba(0,0,0,0.30), rgba(255,105,180,0.30));
}

.music-player {
  margin-top: 24px;
  background: (40, 20, 20, 0.5);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}

.song-info {
  margin-bottom: 12px;
}

.song-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.song-title .song-icon {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 6px
}

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

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

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

.player-btn:hover {
  color: hotpink;
}

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

.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: hotpink;
  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: hotpink;
  cursor: pointer;
}

.banner-box {
  margin-top: 20px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #ff81ff;
}

.banner-box img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.note {
  margin-top: 16px;
  color: #838383;
  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 #ffffff;
}

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;
}

.container2 {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  gap: 20px;
  }

  a.box {
    display: flex;
    align-items: center;
    background-color: rgba(40, 20, 20, 0.5); 
    padding: 20px;
    width: 295px;
    height: 40px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border: 3px solid #ff81ff;
    border-radius: 8px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: background-color 0.2s ease;
  }

  a.box:hover {
    background: rgba(112, 64, 64, 0.5);
  }

  .box img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 15%;
    border: 3.5px solid #e1e1e1;
  }

  .box span {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }
  
  .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;
  }

.owner-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.owner-cat {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 0px;
  background: none !important;
  margin-left: 0;
  margin-right: px;
}

.bubble-cursor {
  position: fixed;
  pointer-events: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hotpink;
  border: 2px solid #fff;
  opacity: 0.5;
  z-index: 9999;
  transition: opacity 1.2s, transform 1.2s;
  will-change: opacity, transform;
}

.smoke-cursor {
  position: fixed;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
  background: radial-gradient(ellipse at 60% 40%, hotpink 40%, transparent 100%);
  opacity: 0.28;
  filter: blur(8px);
  z-index: 9999;
  transition: opacity 1.4s, transform 1.4s;
  will-change: opacity, transform;
}

.smoke-cursor.cloud-cursor {
  width: 32px;
  height: 18px;
  border-radius: 50% 60% 70% 60% / 60% 70% 60% 50%;
  background: radial-gradient(ellipse at 60% 40%, hotpink 60%, transparent 100%);
  filter: blur(8px);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 1.6s, transform 1.6s;
  will-change: opacity, transform;
}