.terms-page{
    min-height:100vh;
    padding:120px 8%;
    display:grid;
    grid-template-columns:250px 1fr;
    gap:50px;
    background:
    radial-gradient(circle at 10% 15%, rgba(0,212,255,0.16), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(0,102,255,0.12), transparent 32%),
    #020817;
}

.terms-sidebar{
    position:sticky;
    top:120px;
    height:max-content;
}

.terms-sidebar h4{
    color:#64748b;
    margin-bottom:15px;
    font-size:.8rem;
}

.sidebar-btn{
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:12px;
    margin-bottom:10px;
    border:none;
    border-radius:12px;
    background:#08152f;
    color:white;
    cursor:pointer;
}

.sidebar-btn.active{
    background:#122245;
}

.terms-content h1{
    font-size:4rem;
    margin-bottom:10px;
}

.terms-content h1 span{
    color:#2ea6ff;
}

.updated{
    color:#94a3b8;
    margin-bottom:25px;
}

.search-box{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
    background:#08152f;
    color:white;
    margin-bottom:25px;
}

.terms-category{
    margin-bottom:20px;
}

.accordion-header{
    padding:16px;
    background:#08152f;
    border-radius:14px;
    cursor:pointer;
    font-weight:600;
}

.accordion-body{
    margin-top:8px;
    background:#08152f;
    border-radius:14px;
    overflow:hidden;
}

.term-item{
    padding:15px 20px;
    border-bottom:1px solid rgba(255,255,255,.05);
    color:#d6e0ff;
}

.term-item:last-child{
    border-bottom:none;
}

@media(max-width:900px){

    .terms-page{
        grid-template-columns:1fr;
    }

    .terms-sidebar{
        position:static;
    }

    .terms-content h1{
        font-size:2.5rem;
    }
}

.term-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px 20px;
    border-bottom:1px solid rgba(255,255,255,.05);
    color:#d6e0ff;
    line-height:1.7;
}

.term-item:last-child{
    border-bottom:none;
}

.term-number{
    color:#2ea6ff;
    font-weight:700;
    min-width:32px;
    flex-shrink:0;
}