html, body {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
   }
   

.boxx {
   margin: 12% auto;
margin-top: 12%;
  width: 85%;
  padding: 20px;
  height: 80%;
 background: linear-gradient(90deg, rgb(19, 19, 19), rgb(36, 36, 36));
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  border-radius: 15px;
   box-shadow: 5 0 10px rgba(0,0,0,0.2);
   z-index: 0;
  
}
.boxx::-webkit-scrollbar {
  display: none;
}
 .boxx h1 {
color: white;
     text-shadow: 5px 0px 10px rgb(255, 0, 0), -5px 0px 10px blue, 5px -2px 10px cyan;
     font-family: Arial, Helvetica, sans-serif;
     text-align: center ;
    }
    .boxx p {
      font-family: Arial, Helvetica, sans-serif;
      color: white;
    }
    .boxx h3 {
      color: white;
      font-family: Arial, Helvetica, sans-serify;
    }
     .boxx h2 {
      color: white;
      font-family: Arial, Helvetica, sans-serify;
    }


   #loader {
  position: fixed; inset: 0;
  display: flex; justify-content: center; align-items: center;
  background: #0a0a0a; z-index: 9999;
 
}
.text {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0;
  text-align: center;
  top: auto;
  animation: fadeText .5s ease .3s forwards;
}
.spinner {
  background-image: linear-gradient(rgb(175, 174, 174) 35%,rgb(255, 255, 255));
  width: 100px;
  height: 100px;
  animation: spinning82341 1.7s linear infinite;
  text-align: center;
  border-radius: 50px;
  filter: blur(1px);
  box-shadow: 0px -5px 20px 0px rgb(192, 190, 190), 0px 5px 20px 0px rgb(255, 255, 255);
  z-index: 9999;
}

.spinner1 {
  background-color: rgb(36, 36, 36);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  filter: blur(10px);
  z-index: 9999;
}

@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn { from{opacity:0}to{opacity:1}}
@keyframes fadeText { to {opacity: 1 }}
@keyframes popUp {to {transform:scale(1)}}
@keyframes fadeOut { to {opacity:0;visibility:hidden;} }


 body {
        height: 100vh;
        overflow: hidden;
        background: #0f0f1a;
    }

    .background {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
        filter: blur(80px);
    }

    .blob {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        opacity: 0.7;
        animation: move 20s infinite alternate ease-in-out;
    }

    .blob:nth-child(1) {
        background: #ff6ec4;
        top: 10%;
        left: 10%;
        animation-duration: 25s;
    }

    .blob:nth-child(2) {
        background: #7873f5;
        top: 50%;
        left: 60%;
        animation-duration: 30s;
    }

    .blob:nth-child(3) {
        background: #4ade80;
        top: 70%;
        left: 20%;
        animation-duration: 22s;
    }

    .blob:nth-child(4) {
        background: #22d3ee;
        top: 30%;
        left: 75%;
        animation-duration: 28s;
    }

    @keyframes move {
        0% {
            transform: translate(0, 0) scale(1);
        }
        50% {
            transform: translate(100px, -150px) scale(1.2);
        }
        100% {
            transform: translate(-120px, 100px) scale(0.9);
        }
    }

    /* Optional glass overlay */
    .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(120px);
        background: rgba(255, 255, 255, 0.05);
    }

    hr {
  border: 1px solid rgb(83, 83, 83);
}