body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  cursor: none;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #ff00dd;
  font-size: 2em;
  cursor: pointer;
  transition: opacity 1s ease;
}

#enter-text {
  text-align: center;
  border-color: #ff00dd;
  border: 3px solid;
  background-color: rgb(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  animation: pulse 2s infinite;
  opacity: 0.8;
  box-shadow: 0 0 20px #ff00f7, 0 0 30px #ff00f7, 0 0 40px #ff00f7, 0 0 50px #ff00f7;
  height: 30px;
  width: 125px;
  font-size: 1.0em;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #ff00dd;
}

.profile-box {
  border-color: #ff00dd;
  border: 2px solid;
  background-color: rgb(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 0 20px #ff00f7, 0 0 30px #ff00f7, 0 0 40px #ff00f7, 0 0 50px #ff00f7;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#profile-pic {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

#profile-pic:hover {
  transform: scale(1.1);
}

#username {
  font-size: 2em;
  background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
  background-size: 400%;
  -webkit-background-clip: text;
  animation: rainbow 3s linear infinite;
  z-index: 9999;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  cursor: none;
}

.link {
  text-decoration: none;
  color: #ff00dd;
  font-size: 1.2em;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
  border: 2px solid #ff00dd;
  margin-bottom: 5px;
  cursor: none;
}

.link:hover {
  background-color: #ff00dd(255, 255, 255, 0.2);
  border-color: #ff00dd;
  transform: scale(1.05);
  cursor: none;
}

#volume-control {
  margin-top: 20px;
  width: 200px;
  -webkit-appearance: none;
  background: #ff00dd;
  height: 5px;
  outline: none;
  cursor: none;
}

#volume-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: #ff00dd;
  cursor: pointer;
  border-radius: 50%;
  cursor: none;
}

#volume-control::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #ff00dd;
  cursor: pointer;
  border-radius: 50%;
}

.volume-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.volume-label {
  color: #ff00dd;
  margin-top: 10px;
}
* {
  cursor: none; /* Hide the cursor on all elements */
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.custom-cursor {
  position: absolute;
  width: 20px; /* Medium size dot */
  height: 20px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255, 0.8); /* Glowing pink dot */
  box-shadow: 0 0 15px rgb(255, 255, 255, 0.8), 0 0 30px rgb(255, 255, 255, 0.6); 
  animation: blink 1s infinite;
  pointer-events: none; /* Prevent the cursor from interfering with interactions */
  transition: transform 0.1s ease;
}

@keyframes blink {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

button {
  padding: 10px 20px;
  font-size: 16px;
}
