header.base {
    width: 100%;
    background: #181818;
    margin-bottom: 0;
}
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    background: #181818;
}
.navbar-logo img {
    height: 48px;
    display: block;
}
.navbar-links ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-links ul li a {
    color: #e1e1e1;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.2s;
}
.navbar-links ul li a.active,
.navbar-links ul li a:hover {
    color: #fff;
}
.navbar-links ul li a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    margin: auto;
    width: 30px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    transition: all .2s;
}
.navbar-links ul li a:hover:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    margin: auto;
    width: 60%;
    height: 2px;
    background: #c44b17;
    border-radius: 2px;
    opacity: 1;
    transition: all .2s;
}
.navbar-links ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    margin: auto;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    opacity: 0;
    transition: all .2s;
}
.navbar-login {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navbar-btn-login {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    margin-left: 1rem;
}
.navbar-btn-login:hover {
    color: #c44b17;
    border-color: #c44b17;
}
.navbar-profile-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 0.2rem 0.8rem 0.2rem 0.5rem;
    background: transparent;
    height: 38px;
}
.navbar-profile-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #222;
    border: 1px solid #444;
    object-fit: cover;
}
.navbar-profile-name {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    margin-right: 0.5rem;
    white-space: nowrap;
    line-height: 1;
}
.navbar-profile-logout {
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: filter 0.2s;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    justify-content: center;
}
.navbar-profile-logout svg {
    display: block;
}
.navbar-profile-logout:hover svg path {
    stroke: #ff6a1a;
}
@media (max-width: 1023px) {
    .navbar-content {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 1rem;
    }
    .navbar-links ul {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .navbar-login {
        justify-content: center;
        margin-top: 1rem;
    }
} 