*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial;
  color:white;
  background:#0b0b0b;
  overflow-x:hidden;
  position:relative;
}

/* FUNDO */

body::before{
  content:"";
  position:fixed;
  inset:0;

  background:
  linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.92)),
  url("https://images.unsplash.com/photo-1578632767115-351597cf2477?q=80&w=1400");

  background-size:cover;
  background-position:center;

  z-index:-2;

  animation:bg 18s ease infinite alternate;
}

body::after{
  content:"";
  position:fixed;
  inset:0;

  background:linear-gradient(
    45deg,
    rgba(88,101,242,0.08),
    rgba(123,104,238,0.08)
  );

  z-index:-1;
}

@keyframes bg{

  from{
    transform:scale(1);
  }

  to{
    transform:scale(1.05);
  }
}

/* HERO */

.hero{
  padding:90px 20px 30px;
  text-align:center;
}

.logo{
  font-size:60px;
  margin-bottom:15px;
  text-shadow:0 0 10px #5865F2;
  animation:logoGlow 2s infinite alternate;
}

@keyframes logoGlow{

  from{
    text-shadow:0 0 10px #5865F2;
  }

  to{
    text-shadow:
    0 0 18px #5865F2,
    0 0 28px #5865F2;
  }
}

.logo span{
  color:#5865F2;
}

.sub{
  color:#d0d0d0;
  font-size:18px;
  margin-bottom:25px;
}

/* SEARCH BOX */

.search-box{
  max-width:700px;
  margin:auto;
  background:rgba(12,12,12,0.82);
  border:1px solid #252525;
  padding:25px;
  border-radius:24px;
  backdrop-filter:blur(6px);
}

select,
input{
  width:100%;
  padding:18px;
  border:none;
  outline:none;
  border-radius:14px;
  background:#1b1b1b;
  color:white;
  font-size:17px;
  margin-bottom:15px;
}

button{
  width:100%;
  padding:18px;
  border:none;
  border-radius:14px;
  background:linear-gradient(90deg,#5865F2,#7b68ee);
  color:white;
  font-size:17px;
  font-weight:bold;
  cursor:pointer;
}

.regen{
  margin-top:12px;
  background:#1b1b1b;
  border:1px solid #303030;
}

.share-btn{
  margin-top:12px;
  background:linear-gradient(90deg,#232526,#414345);
}

button:hover{
  opacity:0.94;
}

/* HINT */

.hint{
  margin-top:15px;
  color:#aaa;
  font-size:13px;
}

.stats{
  margin-top:18px;
  color:#8ab4ff;
  font-size:14px;
}

/* RESULTADOS */

.container{
  max-width:1000px;
  margin:auto;
  padding:20px;
}

#resultado{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.nick{
  background:rgba(14,14,14,0.86);
  border:1px solid #252525;
  padding:18px;
  border-radius:16px;
  font-size:20px;
  cursor:pointer;
  transition:0.2s;
  animation:fadeUp 0.35s ease;
}

.nick:hover{
  border-color:#5865F2;
  transform:translateY(-2px);
  box-shadow:0 0 18px rgba(88,101,242,0.35);
}

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* LOADING */

.loading{
  text-align:center;
  padding:30px;
  color:#8ab4ff;
  font-size:18px;
  animation:pulse 1s infinite;
}

@keyframes pulse{

  0%{
    opacity:0.5;
  }

  50%{
    opacity:1;
  }

  100%{
    opacity:0.5;
  }
}

/* SEO */

.seo-content{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

.seo-content h2{
  text-align:center;
  margin-bottom:20px;
  font-size:34px;
}

.seo-content p{
  text-align:center;
  color:#bbb;
  margin-bottom:30px;
}

.seo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.seo-card{
  background:rgba(14,14,14,0.86);
  border:1px solid #252525;
  padding:25px;
  border-radius:18px;
  transition:0.2s;
  text-decoration:none;
  color:white;
}

.seo-card:hover{
  border-color:#5865F2;
  transform:translateY(-2px);
  box-shadow:0 0 20px rgba(88,101,242,0.25);
}

/* POPULARES */

.popular-section{
  max-width:1100px;
  margin:auto;
  padding:20px;
}

.popular-section h2{
  text-align:center;
  margin-bottom:25px;
  font-size:32px;
}

.popular-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:15px;
}

.popular-card{
  background:rgba(14,14,14,0.86);
  border:1px solid #252525;
  padding:20px;
  border-radius:18px;
  text-align:center;
  transition:0.2s;
}

.popular-card:hover{
  border-color:#5865F2;
  transform:translateY(-2px);
  box-shadow:0 0 20px rgba(88,101,242,0.25);
}

/* POPUP */

.popup{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#5865F2;
  padding:14px 20px;
  border-radius:12px;
}

/* FOOTER */

footer{
  text-align:center;
  color:#888;
  padding:35px;
  font-size:13px;
}

.footer-links{
  margin-top:10px;
}

.footer-links a{
  color:#8ab4ff;
  margin:0 10px;
  text-decoration:none;
}

.footer-links a:hover{
  text-decoration:underline;
}

/* PARTICLES */

.particles::before,
.particles::after{
  content:"";
  position:fixed;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(88,101,242,0.08);
  filter:blur(80px);
  z-index:-1;
  animation:float 8s infinite alternate;
}

.particles::before{
  top:10%;
  left:10%;
}

.particles::after{
  bottom:10%;
  right:10%;
}

@keyframes float{

  from{
    transform:translateY(0px);
  }

  to{
    transform:translateY(30px);
  }
}

/* MOBILE */

@media(max-width:700px){

  #resultado{
    grid-template-columns:1fr;
  }

  .seo-grid{
    grid-template-columns:1fr;
  }

  .popular-grid{
    grid-template-columns:1fr;
  }

  .logo{
    font-size:42px;
  }
 }