* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  cursor: none !important;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

body {
  position: relative;
  cursor: none;
}

.background {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 110%;
  height: 110%;
  z-index: -1;
  background-image: url("images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px) brightness(0.65);
}

.wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: white;
  max-width: 90%;
  width: 500px;
}

.profile-pic {
  animation: pulseGlow 3s infinite ease-in-out;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(138, 218, 255, 0.76);
  object-fit: cover;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.7);
  }
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00ffe1, #0077ff, #00ffe1);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

p {
  font-size: 1.1rem;
  color: #ddd;
  opacity: 0.9;
}

.cursor {
  width: 15px;
  height: 15px;
  background: white;
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1.1rem;
  color: white;
  background: rgba(0, 200, 255, 0.2);
  border: 1px solid rgba(0, 200, 255, 0.4);
  border-radius: 10px;
  text-decoration: none;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
  cursor: none;
}

.button:hover {
  background: rgba(0, 200, 255, 0.35);
   box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
}

a, a:hover, a:focus {
  cursor: none;
}
