.main-header{
    width: 100%;
    height: 50px;
    padding: 0 35px;
    margin-bottom: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;

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

    background: rgba(10,10,10,.75);
    border-bottom: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
}

.header-logo img{
    width: 140px;
    display: block;
}

.header-links,
.header-actions{
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-links a,
.header-actions a,
.header-actions button{
    color: white;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    cursor: pointer;
    transition: .25s;
}

.header-links a:hover,
.header-actions a:hover,
.header-actions button:hover{
    background: white;
    color: black;
}

.header-user{
    color: white;
    font-size: .9rem;
    font-weight: 500;
}

@media(max-width: 700px){
    .main-header{
        height: auto;
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }

    .header-links,
    .header-actions{
        flex-wrap: wrap;
        justify-content: center;
    }
}