@font-face {
  font-family: 'DOWNCOME';
  src: url('../fonts/DOWNCOME.TTF') format('truetype');
}

body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: 'DOWNCOME', monospace;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#click-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

#content-wrapper {
  filter: blur(6px);
  transition: filter 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#logo {
  margin-top: 50px;
  text-align: center;
}

#logo img {
  max-width: 650px;
  height: auto;
}

#logo-text {
  color: white;
  font-size: 60px;
  margin-top: 30px;
  letter-spacing: 2px;
}

#main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  width: 100%;
}

#names-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

/* red profile shit */
.profile-name {
  color: white;
  font-size: 50px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  background: radial-gradient(circle at center, red, black, red);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: radialShift 4s infinite linear;
}

/* purple profile text shit ig idk */
.profile-name-purple {
  color: white;
  font-size: 50px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  background: radial-gradient(circle at center, #7470e1, black, #7470e1);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: radialShift 4s infinite linear;
}

.profile-name::after,
.profile-name-purple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 35px;
  background: black;
  border-radius: 50% / 50%;
  transform: translate(-50%, -50%) scaleY(1);
  animation: blink 4s infinite;
  z-index: 1;
  overflow: hidden;
}

.profile-name::before,
.profile-name-purple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  background: red;
  border-radius: 50%;
  transform: translate(-50%, -50%) scaleY(1);
  animation: irisBlink 4s infinite;
  animation-delay: 0.07s;
  z-index: 2;
  overflow: hidden;
}

.profile-name .pupil,
.profile-name-purple .pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

@keyframes radialShift {
  0%   { background-position: 50% 50%; background-size: 100% 100%; }
  50%  { background-position: 50% 50%; background-size: 150% 150%; }
  100% { background-position: 50% 50%; background-size: 100% 100%; }
}

@keyframes blink {
  0%, 90%, 100% { transform: translate(-50%, -50%) scaleY(1); }
  92%, 98%      { transform: translate(-50%, -50%) scaleY(0.1); }
}

@keyframes irisBlink {
  0%, 90%, 100% { transform: translate(-50%, -50%) scaleY(1); }
  92%, 98%      { transform: translate(-50%, -50%) scaleY(0.1); }
}

@keyframes strike {
  0%   { transform: translate(-50%, -50%) scaleY(0.3); opacity: 0; }
  50%  { transform: translate(-50%, -50%) scaleY(1.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scaleY(0.3); opacity: 0; }
}

#profile-display {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease forwards;
}

#profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

#profile-desc {
  font-family: 'Terminal', monospace !important;
  font-size: 14px;
  max-width: 300px;
  text-align: center;
  padding: 0 10px;
  line-height: 1.5;
  margin-top: 5px;
  background-size: 200% 200%;
  animation: fadeIn 1s ease-out, gradientShift 4s infinite linear;
}

#profile-desc.red-text {
  background: radial-gradient(circle at center, #ff0000, #3a0101, #ff0000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 2s infinite linear;
}

#profile-desc.purple-text {
  background: radial-gradient(circle at center, #7470e1, #2f2e50, #7470e1);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 2s infinite linear;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#audio-player {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 20px;
  transform: none;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  width: 300px;
  font-family: Arial, sans-serif;
  cursor: move;
  user-select: none;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#audio-player .title-bar {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 3px 5px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

#audio-player .title-bar .close-button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

#audio-player .title-bar .close-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

#audio-player .controls {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
  justify-content: center;
}

#audio-player button {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 4px 8px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  min-width: 30px;
  transition: all 0.2s ease;
}

#audio-player button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

#audio-player button:active {
  transform: scale(0.95);
}

#audio-player .progress-bar {
  width: 100%;
  height: 4px;
  background: #ffffff;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
}

#audio-player .progress-fill {
  width: 0%;
  height: 100%;
  background: #ffffff;
  transition: width 0.1s linear;
}

#audio-player .song-list {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 120px;
  overflow-y: auto;
  padding: 2px;
}

#audio-player .song-item {
  padding: 4px 8px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
}

#audio-player .song-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

#audio-player .song-item.active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

#audio-player .song-list::-webkit-scrollbar {
  width: 8px;
}

#audio-player .song-list::-webkit-scrollbar-track {
  background: #000000;
}

#audio-player .song-list::-webkit-scrollbar-thumb {
  background: #ffffff;
  border: 1px solid #000000;
}

#player-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.356);
  color: #ffffff;
  padding: 8px 12px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

#player-toggle:hover {
  background: #ffffff;
  border-color: #ffffff;
}
