/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050505;
  color:white;
  font-family:'Inter',sans-serif;
}

nav{
  padding:30px 50px;
}

.logo{
  width:50px;
}

.hero{
  padding:80px 40px;
  text-align:center;
}

.hero h1{
  font-size:64px;
  font-weight:800;
  margin-bottom:50px;
}

.video-box{
  width:100%;
  max-width:900px;
  height:500px;
  background:#0A0A0A;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:30px;
  margin:0 auto 60px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#666;
}

.cards{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
  width:400px;
  background:#0A0A0A;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:30px;
  padding:40px;
  text-align:left;
  transition:0.3s;
}

.card:hover{
  border-color:#7B2DFF;
  transform:translateY(-5px);
}

.card h2{
  font-size:32px;
  margin-bottom:25px;
}

.card ul{
  list-style:none;
}

.card li{
  margin-bottom:18px;
  color:#A0A0A0;
}

.main-btn{
  margin-top:30px;
  width:100%;
  background:#7B2DFF;
  border:none;
  padding:16px;
  border-radius:14px;
  color:white;
  font-weight:600;
  cursor:pointer;
}

.dm-section{
  margin-top:60px;
}

.dm-section p{
  color:#A0A0A0;
  margin-bottom:10px;
}

.dm-section a{
  color:white;
  text-decoration:none;
}

.about{
  padding:120px 40px;
  display:flex;
  gap:60px;
  max-width:1300px;
  margin:auto;
  align-items:center;
  flex-wrap:wrap;
}

.about-video{
  flex:1;
  min-width:350px;
  height:500px;
  background:#0A0A0A;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#666;
}

.about-text{
  flex:1;
  min-width:350px;
}

.about-text h2{
  font-size:48px;
  margin-bottom:30px;
}

.about-text p{
  color:#A0A0A0;
  line-height:1.8;
  margin-bottom:20px;
}

.highlight{
  color:white !important;
}

.socials{
  display:flex;
  gap:20px;
  margin-top:30px;
}

.socials a{
  color:white;
  text-decoration:none;
}

.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:20px;
}

.popup-overlay.active{
  display:flex;
}

.popup{
  width:100%;
  max-width:700px;
  background:#0A0A0A;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:30px;
  padding:40px;
  position:relative;
}

.popup p{
  color:#A0A0A0;
  line-height:1.8;
  margin-bottom:20px;
}

.popup h2{
  margin-bottom:30px;
}

.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  background:none;
  border:none;
  color:white;
  font-size:20px;
  cursor:pointer;
}

.proof-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:15px;
  margin-bottom:30px;
}

.proof-box{
  height:120px;
  background:#111;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#666;
}

.ig-link{
  display:block;
  margin-bottom:20px;
  color:white;
  text-decoration:none;
}

.floating-group{
  position:fixed;
  bottom:30px;
  left:30px;
  width:320px;
  background:#0A0A0A;
  border:1px solid #7B2DFF;
  border-radius:25px;
  padding:25px;
}

.floating-group h3{
  margin-bottom:15px;
}

.floating-group p{
  color:#A0A0A0;
  line-height:1.6;
  margin-bottom:20px;
}

.floating-group a{
  display:inline-block;
  background:#7B2DFF;
  color:white;
  text-decoration:none;
  padding:12px 20px;
  border-radius:12px;
}

@media(max-width:900px){

  .hero h1{
    font-size:42px;
  }

  .video-box{
    height:300px;
  }

  .about{
    padding:80px 20px;
  }

  .floating-group{
    width:90%;
    left:5%;
    bottom:20px;
  }

}