* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  overflow: hidden;
  position: relative;
}

#vbg {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

#textcontainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

#textanimation {
  user-select: none;
  transition: transform 0.3s ease;
  animation: floatup 1s ease forwards;
  display: inline-block;
  transform-style: preserve-3d;
}

#textanimation:hover {
  transform: rotateX(10deg) rotateY(10deg);
}

@keyframes floatup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#title {
  font-size: 4rem;
  font-weight: 800;
  color: #d6b3ff;
  text-shadow: 0 0 15px #a974ff;
}

#subtitle {
  font-size: 1.2rem;
  color: #caaaff;
  margin-top: 10px;
}

#subtitle a {
  color: #caaaff;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 0 15px #a974ff, 0 0 30px #a974ff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

#subtitle a:hover {
  color: #d6b3ff;
  text-shadow: 0 0 20px #d6b3ff, 0 0 40px #d6b3ff;
}


@keyframes floatin {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#ovr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 0, 60, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  user-select: none;
}

#ovrtxt {
  font-size: 2rem;
  color: #675193;
  text-shadow: 0 0 10px #a974ff;
  font-weight: bold;
}

#customc {
  position: fixed;
  width: 30px;    
  height: 30px;
  pointer-events: none; 
  user-select: none;
  transform: translate(10px, 10px); 
  transition: transform 0.1s ease;
  z-index: 9999;
  display: none; 
}



