.app-info{
display:flex;
align-items:center;
gap:16px;
background:rgba(0,0,0,0.35);
padding:18px;
border-radius:14px;
margin:20px auto;
max-width:720px;
}

.app-icon{
width:70px;
height:70px;
border-radius:16px;
}

.app-name{
font-size:22px;
color:white;
margin:0;
}

.developer{
color:#94a3b8;
font-size:14px;
margin-top:2px;
}

.app-stats{
display:flex;
gap:22px;
margin-top:10px;
flex-wrap:wrap;
}

.stat{
color:white;
font-weight:600;
font-size:15px;
}

.stat span{
display:block;
font-size:11px;
color:#94a3b8;
font-weight:400;
}
body{
margin:0;
font-family:Arial,sans-serif;
color:white;
text-align:center;
background:linear-gradient(270deg,#020024,#090979,#000000);
background-size:600% 600%;
animation:bgmove 12s ease infinite;
}
h1{
margin-bottom:8px;
text-shadow:0 0 18px #0b5cff;  
}

h2{
margin-top:6px;
}
@keyframes bgmove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}
#particles-bg{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}
/* ================= NAVBAR ================= */
.feature-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.feature{
background:rgba(0,0,0,0.3);
padding:20px;
border-radius:15px;
}

.trust-badges{
margin-top:20px;
font-size:14px;
opacity:0.9;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:60px;
  background:rgba(5,10,25,0.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,195,255,0.2);
  z-index:1000;
}

.nav-container{
  max-width:1100px;
  margin:auto;
  height:100%;
  padding:0 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-brand a{
  font-size:20px;
  font-weight:700;
  color:#00c3ff;
  text-decoration:none;
}

/* ===== DESKTOP LINKS ===== */

.nav-links{
  display:flex;
  gap:26px;
}

.nav-links a{
  text-decoration:none;
  color:white;
  opacity:0.85;
  transition:0.3s ease;
}

.nav-links a:hover{
  color:#00c3ff;
  opacity:1;
}

/* ===== HAMBURGER ===== */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:3px;
  background:white;
  border-radius:3px;
  transition:0.3s ease;
}

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ===== MOBILE MENU ===== */

@media (max-width:768px){

  .hamburger{
    display:flex;
  }

  .nav-links{
    position:fixed;
    top:60px;
    left:0;
    width:100%;
    background:linear-gradient(180deg,#06133a,#030a2b);
    backdrop-filter:blur(20px);
    flex-direction:column;
    align-items:center;
    gap:22px;
    padding:35px 0;

    transform:translateY(-30px);
    opacity:0;
    pointer-events:none;
    transition:all 0.35s ease;
  }

  .nav-links.active{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
}

/* ===== NAV OVERLAY ===== */

.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,20,60,0.6);
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:0.3s ease;
  z-index:900;
}

.nav-overlay.active{
  opacity:1;
  pointer-events:auto;
}

body.nav-open{
  overflow:hidden;
}

/* HEADER FIX */
header{
padding:90px 20px 50px;
max-width:900px;
margin:auto;
}

/* LOGO STYLE */
.logo{
font-size:44px;
font-weight:bold;
color:#0b5cff;
text-shadow:0 0 20px #0b5cff;
margin-bottom:10px;
}
.sub-info{
font-size:15px;
color:#cbd5e1;
}
/* BUTTON FIX */
.download-btn{
display:inline-block;
margin-top:20px;
padding:14px 32px;
background:#0b5cff;
color:white;
text-decoration:none;
border-radius:10px;
font-size:18px;
box-shadow:0 0 15px rgba(0,102,255,0.7);
transition:.3s;
}

.download-btn:hover{
transform:scale(1.05);
box-shadow:0 0 25px rgba(0,102,255,1);
}
.download-btn{
position:sticky;
top:20px;
z-index:5;
}
/* SECTIONS */
.section{
padding:40px 20px;
}

.card{
background:rgba(0,0,0,0.45);
backdrop-filter:blur(10px);
padding:28px;
border-radius:16px;
max-width:820px;
margin:auto;
box-shadow:0 0 25px rgba(0,0,0,0.6);
}
.card p{
margin-bottom:18px;
}
/* FORM */
textarea,select{
padding:10px;
border-radius:6px;
border:none;
width:90%;
max-width:500px;
background:#020024;
color:white;
}

button{
padding:12px 25px;
background:#0b5cff;
border:none;
border-radius:8px;
color:white;
font-size:16px;
cursor:pointer;
}

button:hover{
box-shadow:0 0 20px #0b5cff;
}
ul{
line-height:1.8;
}
/* FAQ */
.faq-question{
cursor:pointer;
font-weight:bold;
padding:12px;
background:#020024;
border-radius:6px;
}

.faq-answer{
display:none;
padding:10px;
color:#cbd5e1;
}

/* FOOTER */
footer{
margin-top:40px;
padding:20px;
background:rgba(0,0,0,0.5);
color:#94a3b8;
}
.arrow{
display:inline-block;
margin-right:8px;
transition:transform 0.3s ease;
font-size:20px;
}

.arrow.rotate{
transform:rotate(180deg);
}
/* Download Button Pulse Glow */
@keyframes pulseGlow{
0%{
box-shadow:0 0 15px rgba(11,92,255,0.5);
}
50%{
box-shadow:0 0 30px rgba(11,92,255,1);
}
100%{
box-shadow:0 0 15px rgba(11,92,255,0.5);
}
}

.download-btn.pulse{
animation:pulseGlow 2.5s infinite;
}
