*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    background:#040814;
    color:#f5f7fa;
    overflow-x:hidden;
}

.background{
    position:fixed;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top,#0d2a6d 0%,transparent 35%),
    radial-gradient(circle at bottom right,#07152f 0%,transparent 30%);
    z-index:-1;
}

.container{
    max-width:900px;
    margin:60px auto;
    padding:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(25px);
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.back-btn{
    text-decoration:none;
    color:#5fa8ff;
    font-weight:600;
    display:inline-block;
    margin-bottom:30px;
    transition:.3s;
}

.back-btn:hover{
    opacity:.8;
}

h1{
    font-size:48px;
    margin-bottom:10px;
}

.updated{
    color:#9ba9c9;
    margin-bottom:40px;
}

section{
    margin-bottom:35px;
}

h2{
    margin-bottom:15px;
    color:#5fa8ff;
    font-size:24px;
}

p{
    color:#d5dceb;
    line-height:1.8;
}

ul{
    margin-top:15px;
    padding-left:20px;
}

li{
    margin-bottom:10px;
    color:#d5dceb;
}

.contact-box{
    margin-top:20px;
    padding:20px;
    border-radius:18px;
    background:rgba(95,168,255,.08);
    border:1px solid rgba(95,168,255,.2);
}

footer{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#8794b3;
}

@media(max-width:768px){

    .container{
        margin:20px;
        padding:30px 25px;
    }

    h1{
        font-size:36px;
    }

    h2{
        font-size:22px;
    }
}