@font-face {
  font-family: 'GothicByte';
  src: url('../fonts/GothicByte.ttf') format('truetype');
}

* {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="8" fill="none" stroke="%2300ffff" stroke-width="2"/><circle cx="10" cy="10" r="2" fill="%2300ffff"/></svg>') 10 10, auto;
}

*:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="10" fill="none" stroke="%23ff00ff" stroke-width="2"/><circle cx="12" cy="12" r="3" fill="%23ff00ff"/></svg>') 12 12, pointer;
}

body {
  background: url('../images/dibbleback.gif') center/cover no-repeat fixed;
  margin: 0;
  padding: 0;
  font-family: 'GothicByte', monospace;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(0, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(0, 255, 255, 0.03) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 0, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 0, 255, 0.03) 3px
    );
  pointer-events: none;
  z-index: 1;
  animation: gridPulse 4s ease-in-out infinite;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes pulseGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.1); }
}

#click-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  animation: shimmer 3s linear infinite, pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
  letter-spacing: 2px;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

#content-wrapper {
  filter: blur(6px);
  transition: filter 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

#logo {
  margin-top: 20px;
  text-align: center;
  position: relative;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

#logo img {
  width: 300px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6)) drop-shadow(0 0 40px rgba(255, 0, 255, 0.4));
  transition: all 0.3s ease;
}

#logo img:hover {
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.9)) drop-shadow(0 0 60px rgba(255, 0, 255, 0.7));
  transform: scale(1.05);
}

#logo-text {
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 22px;
  margin-top: 10px;
  letter-spacing: 4px;
  animation: shimmer 3s linear infinite;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

#main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
  width: 100%;
}

#names-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-name {
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.profile-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.profile-name:hover::before {
  left: 100%;
}

.profile-name:hover {
  color: #00ffff;
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), inset 0 0 20px rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

#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;
  border: 3px solid rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
  animation: profileGlow 2s ease-in-out infinite alternate;
  position: relative;
}

@keyframes profileGlow {
  0% { 
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.5);
  }
  100% { 
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6), 0 0 80px rgba(0, 255, 255, 0.4);
    border-color: rgba(255, 0, 255, 0.5);
  }
}

#profile-desc {
  font-family: 'Terminal', monospace !important;
  color: white;
  font-size: 14px;
  max-width: 300px;
  text-align: center;
  padding: 15px 20px;
  line-height: 1.5;
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), inset 0 0 20px rgba(0, 255, 255, 0.05);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#audio-player {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 20px;
  transform: none;
  background: linear-gradient(135deg, rgba(10, 10, 30, 0.9), rgba(30, 10, 46, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.5);
  padding: 10px;
  width: 300px;
  font-family: Arial, sans-serif;
  cursor: move;
  user-select: none;
  z-index: 1000;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), 0 0 80px rgba(255, 0, 255, 0.3), inset 0 0 30px rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  animation: playerFloat 3s ease-in-out infinite;
}

@keyframes playerFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

#audio-player .title-bar {
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
  color: white;
  padding: 3px 5px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(0, 255, 255, 0.5);
  font-size: 14px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  border-radius: 4px;
}

#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: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
  border: 1px solid rgba(0, 255, 255, 0.5);
  color: #ffffff;
  padding: 4px 8px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  min-width: 30px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

#audio-player button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

#audio-player button:hover::before {
  width: 200%;
  height: 200%;
}

#audio-player button:hover {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.4));
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

#audio-player button:active {
  transform: scale(0.95) translateY(0);
}

#audio-player .progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
}

#audio-player .progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  position: relative;
}

#audio-player .progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

#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: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
  border: 2px solid rgba(0, 255, 255, 0.5);
  color: #ffffff;
  padding: 8px 12px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 999;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), 0 0 40px rgba(255, 0, 255, 0.3);
  border-radius: 6px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

#player-toggle:hover {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.5), rgba(255, 0, 255, 0.5));
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
  transform: translateY(-2px);
}


