/* ========================= */
/* style.css */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#070707;
  color:white;
}

nav{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#0d0d0d;
  border-bottom:1px solid #ffffff10;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:1.3rem;
  font-weight:bold;
}

.logo img{
  width:50px;
  height:50px;
  border-radius:16px;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav a{
  color:#cccccc;
  text-decoration:none;
  transition:0.2s;
}

nav a:hover{
  color:#ff5d8d;
}

.hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 8%;
  gap:60px;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
  min-width:320px;
}

.hero-text h1{
  font-size:4rem;
  margin-bottom:25px;
}

.gradient{
  background:linear-gradient(90deg,#ff2d6f,#ff9d9d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text p{
  color:#bfbfbf;
  line-height:1.8;
  margin-bottom:30px;
  max-width:600px;
}

.buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:15px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:bold;
}

.primary{
  background:linear-gradient(135deg,#ff2d6f,#ff7979);
  color:white;
}

.secondary{
  background:#151515;
  border:1px solid #ffffff10;
  color:white;
}

.hero-image img{
  width:320px;
  border-radius:40px;
  box-shadow:0 0 50px #ff2d6f40;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  padding:60px 8%;
}

.feature-card{
  background:#101010;
  border:1px solid #ffffff10;
  border-radius:20px;
  padding:40px;
  text-align:center;
}

.feature-card h2{
  color:#ff5f88;
  font-size:2.5rem;
  margin-bottom:10px;
}

.commands-page{
  padding:80px 8%;
}

.commands-page h1{
  text-align:center;
  font-size:3rem;
  margin-bottom:50px;
}

.commands-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.command-card{
  background:#101010;
  border:1px solid #ffffff10;
  border-radius:20px;
  padding:30px;
}

.command-card h3{
  color:#ff6b92;
  margin-bottom:20px;
}

.command-card p{
  color:#d0d0d0;
  margin-bottom:10px;
}

.legal-page{
  padding:80px 8%;
}

.legal-page h1{
  text-align:center;
  font-size:3rem;
  margin-bottom:50px;
}

.legal-box{
  max-width:900px;
  margin:auto;
  background:#101010;
  border:1px solid #ffffff10;
  border-radius:24px;
  padding:40px;
}

.last-updated{
  color:#aaaaaa;
  margin-bottom:30px;
}

.legal-box h2{
  color:#ff6f92;
  margin-top:25px;
  margin-bottom:12px;
}

.legal-box p{
  color:#cfcfcf;
  line-height:1.8;
}

.legal-list{
  padding-left:25px;
  color:#cfcfcf;
  line-height:1.8;
}

footer{
  border-top:1px solid #ffffff10;
  padding:30px;
  display:flex;
  justify-content:center;
  gap:30px;
  background:#0d0d0d;
}

footer a{
  color:#bdbdbd;
  text-decoration:none;
}

footer a:hover{
  color:#ff5d8d;
}

@media(max-width:900px){

  nav{
    flex-direction:column;
    gap:20px;
  }

  nav ul{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    text-align:center;
    justify-content:center;
    padding-top:60px;
  }

  .buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-text h1{
    font-size:3rem;
  }

}