*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Orbitron', sans-serif;
  background:#050505;
  overflow:hidden;
  min-height:100vh;
  color:white;
  position:relative;
}

body::before{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  background:
    radial-gradient(circle at top, rgba(255,102,0,0.18), transparent 50%),
    radial-gradient(circle at bottom, rgba(255,102,0,0.08), transparent 50%);
  animation:bgMove 8s infinite alternate;
  z-index:0;
}

@keyframes bgMove{
  from{
    transform:scale(1);
  }
  to{
    transform:scale(1.08);
  }
}

.particles{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(#ff6600 1px, transparent 1px);
  background-size:40px 40px;
  opacity:0.08;
  animation:moveParticles 15s linear infinite;
}

@keyframes moveParticles{
  from{
    transform:translateY(0);
  }
  to{
    transform:translateY(-40px);
  }
}

.container{
  position:relative;
  z-index:2;
  width:100%;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.card{
  width:100%;
  max-width:950px;
  padding:40px;
  border-radius:30px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,102,0,0.2);
  backdrop-filter:blur(14px);
  box-shadow:
    0 0 30px rgba(255,102,0,0.15),
    0 0 80px rgba(255,102,0,0.08);
  text-align:center;
  animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.logo{
  width:100%;
  max-width:760px;
  margin-bottom:30px;
  animation:float 5s ease-in-out infinite;
}

@keyframes float{
  0%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
  100%{
    transform:translateY(0);
  }
}

h1{
  font-size:52px;
  color:#ff6600;
  margin-bottom:20px;
  text-shadow:
    0 0 12px #ff6600,
    0 0 40px rgba(255,102,0,0.8);
}

p{
  font-size:18px;
  color:#ddd;
  margin-bottom:35px;
}

.loading-bar{
  width:100%;
  height:18px;
  border-radius:30px;
  overflow:hidden;
  background:#111;
  margin-bottom:35px;
  border:1px solid rgba(255,102,0,0.25);
}

.loading{
  height:100%;
  width:70%;
  background:linear-gradient(90deg,#ff6600,#ff9d00);
  animation:load 3s infinite ease-in-out;
}

@keyframes load{
  0%{
    width:20%;
  }
  50%{
    width:75%;
  }
  100%{
    width:35%;
  }
}

.socials{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.socials a{
  color:white;
  text-decoration:none;
  padding:14px 26px;
  border-radius:14px;
  border:1px solid rgba(255,102,0,0.3);
  transition:0.4s;
}

.socials a:hover{
  transform:translateY(-5px);
  background:#ff6600;
  box-shadow:0 0 20px rgba(255,102,0,0.7);
}

@media(max-width:768px){

  body{
    overflow:auto;
  }

  .card{
    padding:25px;
  }

  h1{
    font-size:32px;
  }

  p{
    font-size:15px;
  }

  .socials{
    flex-direction:column;
  }

}
