body{
    padding-bottom:95px;
}

/* TOPO */

.topbar{
    position:sticky;
    top:0;
    z-index:100;

    width:100%;
    height:65px;

    padding:0 18px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:rgba(5,8,6,.88);

    backdrop-filter:blur(14px);

    border-bottom:1px solid var(--border);
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-logo{
    width:40px;
    height:40px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--green),
        var(--green2)
    );

    color:#001f10;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
}

.brand-name{
    font-size:18px;
    font-weight:900;
}

.menu-btn{
    width:42px;
    height:42px;

    border-radius:14px;

    border:1px solid var(--border);

    background:rgba(255,255,255,.04);

    color:var(--text);

    font-size:18px;

    cursor:pointer;
}

.dropdown{
    position:fixed;

    top:74px;
    right:16px;

    width:220px;

    background:#0b120e;

    border:1px solid var(--border);

    border-radius:22px;

    padding:10px;

    display:none;

    z-index:999;

    box-shadow:var(--shadow);
}

.dropdown.active{
    display:block;
}

.dropdown a{
    display:flex;
    align-items:center;
    gap:10px;

    padding:14px;

    border-radius:14px;

    color:var(--text);

    font-weight:700;
}

.dropdown a:hover{
    background:rgba(0,255,136,.08);
    color:var(--green);
}

/* PERFIL */

.profile{
    padding:30px 0;
    text-align:center;
}

.profile-photo{
    width:115px;
    height:115px;

    margin:auto auto 18px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        var(--green),
        var(--green2)
    );

    padding:4px;
}

.profile-photo-inner{
    width:100%;
    height:100%;

    border-radius:26px;

    background:#07100b;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:44px;

    color:var(--green);
}

.profile h1{
    font-size:30px;
    font-weight:900;

    margin-bottom:8px;
}

.profile p{
    color:var(--muted);

    font-size:15px;
    line-height:1.5;

    max-width:360px;

    margin:auto;
}

/* LINKS */

.links{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.link-card{
    overflow:hidden;
}

.link-image{
    width:100%;
    height:190px;

    background:#111;
}

.link-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.link-content{
    padding:18px;
}

.link-content h2{
    font-size:21px;
    font-weight:900;

    margin-bottom:10px;
}

.link-content p{
    color:var(--muted);

    font-size:14px;
    line-height:1.5;

    margin-bottom:18px;
}

.empty-state{
    padding:35px 20px;

    text-align:center;

    border:1px dashed var(--border);

    border-radius:24px;

    color:var(--muted);
}

/* MENU FOOTER */

.bottom-menu{
    position:fixed;

    left:50%;
    bottom:14px;

    transform:translateX(-50%);

    width:calc(100% - 28px);
    max-width:520px;

    height:72px;

    background:rgba(8,13,10,.95);

    border:1px solid var(--border);

    border-radius:24px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    z-index:100;

    backdrop-filter:blur(14px);

    box-shadow:var(--shadow);
}

.bottom-menu a{
    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:6px;

    color:var(--muted);

    font-size:11px;
    font-weight:700;
}

.bottom-menu a i{
    font-size:18px;
}

.bottom-menu a.active{
    color:var(--green);
}