*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050505;
    color:white;
}

/* NAVBAR */

.navbar{
    background:#0a0a0a;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:55px;
}

.navbar nav{
    display:flex;
    gap:30px;
}

.navbar nav a{
    color:white;
    text-decoration:none;
}

/* HERO */

.hero{
    height:420px;
    position:relative;

    background:url('assets/bg.jpg') center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size:65px;
    letter-spacing:2px;
}

/* TERMS */

.terms-section{
    padding:100px 8%;
    background:#0b0b0b;
}

.container{
    max-width:1200px;
    margin:auto;
}

.container h2{
    font-size:55px;
    margin-bottom:20px;
}

.intro{
    color:#d0d0d0;
    font-size:18px;
    margin-bottom:15px;
}

.updated{
    color:#ff3b3b;
    font-style:italic;
    margin-bottom:50px;
}

.terms-box{
    background:#111;
    border:1px solid rgba(255,0,0,.15);
    border-radius:15px;
    padding:40px;
}

.terms-box h3{
    color:#ff2a2a;
    margin-bottom:12px;
    margin-top:25px;
}

.terms-box p{
    color:#d6d6d6;
    line-height:1.8;
}

/* FOOTER */

.footer{
    background:#050505;
    text-align:center;
    padding:70px 8%;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-bottom:30px;
}

.footer-links a{
    text-decoration:none;
    color:white;
}

.footer h3{
    color:#ff2a2a;
    margin-bottom:20px;
}

.footer p{
    max-width:900px;
    margin:auto;
    color:#c8c8c8;
    line-height:1.8;
}

.copyright{
    margin-top:40px;
    color:#999;
}

.copyright span{
    color:#ff2a2a;
}

@media(max-width:768px){

    .hero-content h1{
        font-size:40px;
        text-align:center;
    }

    .container h2{
        font-size:36px;
    }

    .terms-box{
        padding:25px;
    }

    .footer-links{
        flex-direction:column;
        gap:15px;
    }
}