.site-header {
    background: #111;
    border-bottom: 1px solid #222;
}

.navbar {
    max-width: 1400px;
    margin: auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.brand-logo {
    width: 42px;
    height: 42px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-right a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-right a:hover {
    background: linear-gradient(
            135deg,
            #833ab4,
            #c13584,
            #e1306c,
            #f77737
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*.language-switcher {*/
/*    display: flex;*/
/*    gap: 6px;*/
/*    padding: 6px;*/
/*    background: rgba(255,255,255,0.06);*/
/*    border: 1px solid rgba(255,255,255,0.08);*/
/*    border-radius: 999px;*/
/*}*/

.lang-link {
    text-decoration: none;
    color: #bdbdbd;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.lang-link:hover {
    color: white;
}

.lang-link.active {
    background: linear-gradient(
            135deg,
            #833ab4,
            #e1306c,
            #f77737
    );
    color: white;
}

/*.nav-right a {*/
/*    position: relative;*/
/*    text-decoration: none;*/
/*}*/

/*.nav-right a::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -6px;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background: linear-gradient(*/
/*            135deg,*/
/*            #833ab4,*/
/*            #e1306c,*/
/*            #f77737*/
/*    );*/
/*    transition: width 0.25s ease;*/
/*}*/

/*.nav-right a:hover::after {*/
/*    width: 100%;*/
/*}*/
