html, body {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
   }
   

.boxx {
   margin: 12% auto;
margin-top: 12%;
  width: 85%;
  padding: 20px;
  height: 80%;
 background:rgb(9, 9, 19);
  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);
}
.game-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card */
.game-card {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #1a1a33, #07070e);
    padding: 12px;
    border-radius: 14px;
    transition: 0.3s;
}

/* Hover effect */
.game-card:hover {
    background: #c0c0ff;
    color: #000;
    transform: scale(1.02);
}

/* Icon */
.icon-img {
    width: 20px;
    height: 20px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 12px;
}

/* Info */
.info {
    flex: 1;
}

.info h3 {
    margin: 0;
    font-size: 16px;
}

.info p {
    margin: 3px 0 0;
    font-size: 13px;
    opacity: 0.7;
}

/* Button */
.game-card button {
    background: #4e54c8;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.game-card button:hover {
    background: #373bb5;
}
@media (max-width: 600px) {
    .icon-img {
        width: 45px;
        height: 45px;
    }

    .info h3 {
        font-size: 14px;
    }

    .info p {
        font-size: 12px;
    }

    .game-card button {
        padding: 6px 10px;
        font-size: 12px;
    }
}