*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:'Be Vietnam Pro',sans-serif;
    background:#111827;
    color:#fff;
    max-width:700px;
    margin:auto;
    padding:8px;
}

/* card */

.block_zero{
    background:#1f2937;
    border-radius:16px;
    padding:12px;
    margin-bottom:10px;
    box-shadow:0 4px 15px rgba(0,0,0,.3);
}

.border1{
    border:1px solid rgba(255,255,255,.08);
}

/* menu */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.menu-block{
    background:#273449;
    border-radius:15px;
    transition:.2s;
    padding:15px;
}

.menu-block:hover{
    transform:translateY(-2px);
    background:#32455f;
}

.menu-block a{
    color:#fff;
    text-decoration:none;
    display:block;
}

.menu-block img{
    width:60px;
    height:60px;
    margin-bottom:10px;
}

/* header */

.header-info{
    display:flex;
    justify-content:space-between;
    gap:8px;
}

.stat-box{
    flex:1;
    background:#273449;
    border-radius:12px;
    padding:8px;
    text-align:center;
}

/* progress */

.exp_bar{
    height:14px;
    background:#2b3647;
    border-radius:20px;
    overflow:hidden;
}

.progress{
    height:100%;
    background:linear-gradient(
        90deg,
        #00ff95,
        #00c3ff
    );
}

/* forum */

.forum-post{
    background:#1b2432;
    padding:12px;
    border-radius:12px;
    margin-bottom:8px;
}

.forum-author{
    color:#7dd3fc;
    margin-bottom:8px;
}

.btn{
    display:inline-block;
    background:#3b82f6;
    color:white;
    border-radius:10px;
    padding:8px 15px;
    text-decoration:none;
    border:none;
}

.btn:hover{
    opacity:.9;
}

/* footer */

.foot{
    background:#1f2937;
    padding:15px;
    border-radius:15px;
    margin-top:15px;
    text-align:center;
}