cat > /www/wwwroot/smart.lotusfund.info/assets/css/style.css <<'CSS'
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:
    "Inter",
    Arial,
    sans-serif;

    background:#090014;
    color:#ffffff;

    overflow-x:hidden;

}


.navbar{

    background:#111827 !important;

}


.hero{

    min-height:500px;
    display:flex;
    align-items:center;

}


.hero h1{

    color:#ffffff;

}


.card{

    border-radius:20px;

    border:1px solid rgba(255,255,255,.1);

    transition:.3s;

}


.card:hover{

    transform:translateY(-5px);

}


.btn-warning{

    background:#facc15;

    border:none;

    color:#000;

    font-weight:700;

}


.btn-warning:hover{

    background:#fde047;

}


.text-warning{

    color:#facc15!important;

}


.text-success{

    color:#22c55e!important;

}


/* Mobile */

@media(max-width:768px){

    .hero h1{

        font-size:40px;

    }


    .container{

        padding-left:15px;

        padding-right:15px;

    }


    .card{

        margin-bottom:15px;

    }


}
CSS