
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#050816;
    color:#fff;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

/* Navbar */
.navbar{
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
    padding:15px 0;
}

.navbar-brand{
    color:#fff !important;
    font-size:30px;
    font-weight:700;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    transition:0.3s;
}

.nav-link:hover{
    color:#00f0ff !important;
}

/* Hero Section */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:100px 0;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:linear-gradient(45deg,#ff00ea,#00f0ff);
    filter:blur(180px);
    top:-100px;
    right:-100px;
    opacity:0.5;
}

.hero-text h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.hero-text span{
    background:linear-gradient(to right,#00f0ff,#ff00ea);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-text p{
    margin-top:20px;
    font-size:18px;
    color:#d1d1d1;
}

.download-btn{
    background:linear-gradient(45deg,#ff00ea,#00f0ff);
    border:none;
    padding:14px 35px;
    border-radius:50px;
    color:#fff;
    font-weight:700;
    margin-top:25px;
    text-decoration:none;
    display:inline-block;
    transition:0.4s;
    box-shadow:0 0 20px rgba(0,240,255,0.4);
}

.download-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

.share-btn{
    border:2px solid #00f0ff;
    padding:14px 35px;
    border-radius:50px;
    color:#00f0ff;
    margin-left:15px;
    text-decoration:none;
    display:inline-block;
    transition:0.4s;
}

.share-btn:hover{
    background:#00f0ff;
    color:#000;
}

.hero-img img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}

/* Glass Cards */
.glass-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:30px;
    transition:0.4s;
    height:100%;
}

.glass-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,240,255,0.3);
}

.glass-card i{
    font-size:45px;
    margin-bottom:20px;
    color:#00f0ff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
    font-weight:800;
}

.section-title p{
    color:#bbb;
}

/* App Screens */
.app-screen img{
    width:100%;
    border-radius:25px;
    transition:0.4s;
}

.app-screen img:hover{
    transform:scale(1.05);
}

/* Download Section */
.download-section{
    background:linear-gradient(45deg,#090b1d,#121a38);
    padding:80px 20px;
    border-radius:30px;
}

/* Footer */
footer{
    background:#03040b;
    padding:30px 0;
    margin-top:80px;
    text-align:center;
}

.social-icons a{
    width:45px;
    height:45px;
    line-height:45px;
    display:inline-block;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    color:#fff;
    margin:5px;
    transition:0.4s;
}

.social-icons a:hover{
    background:#00f0ff;
    color:#000;
}

/* Mobile */
@media(max-width:768px){

.hero{
    text-align:center;
}

.hero-text h1{
    font-size:38px;
}

.hero-text p{
    font-size:16px;
}

.share-btn{
    margin-left:0;
    margin-top:15px;
}

.section-title h2{
    font-size:32px;
}

}
