:root{

    --bg:#1E293B;
    --surface:#273549;

    --primary:#4F8CFF;
    --primary-hover:#3A73E8;

    --text:#F8FAFC;
    --muted:#B8C6D8;

    --border:#3B4D63;

    --radius:14px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);
    color:var(--text);
    font-family:"Poppins",sans-serif;

}

a{

    color:inherit;
    text-decoration:none;

}

img{

    display:block;
    max-width:100%;

}

.container{

    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;

}

.header{

    position:sticky;
    top:12px;
    z-index:999;

    width:100%;
    max-width:1200px;

    margin:12px auto;

    background:rgba(35, 47, 66, .65);
    backdrop-filter: blur(14px);

    border:1px solid rgba(59,77,99,.35);

    border-radius:14px;

}

.header .container{

    height:78px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 20px;

}

.brand{

    display:flex;
    flex-direction:column;

    line-height:1.2;

}

.brand h2{

    font-size:22px;
    font-weight:700;

}

.brand span{

    font-size:13px;
    color:var(--muted);
    margin-top:2px;

}

.navbar{

    display:flex;
    align-items:center;
    gap:28px;

}

.navbar a{

    position:relative;

    color:var(--muted);
    font-size:15px;
    font-weight:500;

    transition:.2s;

}

/* hover */
.navbar a:hover{

    color:var(--text);

}

/* active state */
.navbar a.active{

    color:var(--text);

}

/* underline animation */
.navbar a::after{

    content:"";
    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:.2s;

}

.navbar a:hover::after,
.navbar a.active::after{

    width:100%;

}

.discord-btn{

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 16px;

    border-radius:12px;

    background:var(--primary);
    color:#fff;

    font-weight:600;

    transition:.2s;

}

.discord-btn:hover{

    transform:translateY(-2px);
    background:var(--primary-hover);

}

main{

    padding:40px 0 60px;

}