.main-navbar-vertical {
    width: 100vw;
    margin: 0 auto;
    height: 64px;
    background: rgba(16,16,24,0.72);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(255,255,255,0.14);
    box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.navbar-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100vw;
    margin: 0 auto;
    height: 100%;
    justify-content: space-between;
}
.navbar-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-width: 64px;
    margin-left: 0.5em;
}
.navbar-icon img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    box-shadow: none;
}
.navbar-center {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}
.navbar-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    height: 100%;
    white-space: nowrap;
}
.navbar-list li {
    white-space: nowrap;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.navbar-forum {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 120px;
    margin-right: 1.5em;
    height: 100%;
}
.navbar-forum a {
    background: linear-gradient(90deg,#23263a 0%,#4527a0 100%);
    color: #fff;
    border-radius: 16px;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    padding: 12px 18px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(69,39,160,0.35), 0 0 0 1px rgba(255,255,255,0.08);
    transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.28s cubic-bezier(.7,-0.2,.3,1.1);
}
.navbar-forum a:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #a259f7 100%);
    color: #fffde7;
    box-shadow: 0 8px 26px rgba(69,39,160,0.45), 0 0 0 1px rgba(255,255,255,0.10);
    transform: translateY(-1px) scale(1.03);
}
.navbar-forum a:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(69,39,160,0.35), 0 0 0 1px rgba(255,255,255,0.10);
}
.main-navbar-vertical a {
    display: inline-block;
    padding: 0.35em 0.8em;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08em;
    position: relative;
    background: none;
    transition: none;
    line-height: 1.1;
}
.main-navbar-vertical a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.18em;
    height: 0.32em;
    background: transparent;
    border-radius: 0.18em;
    transition: background 0.18s;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}
.main-navbar-vertical a.active::after {
    background: #fff;
    height: 0.32em;
    border-radius: 0.18em;
    box-shadow: 0 2px 8px 0 #4527a055;
}
.main-navbar-vertical a:hover::after,
.main-navbar-vertical a.active::after {
    background: #fff;
}
.main-navbar-vertical a:hover,
.main-navbar-vertical a.active {
    color: #fff;
    background: none;
    box-shadow: none;
    text-shadow: none;
    transform: none !important;
}
.main-navbar-vertical a[href*="haberler"]::after {
    display: none !important;
}
.main-navbar-vertical a:focus-visible {
    outline: 2px solid #a259f7;
    outline-offset: 2px;
    border-radius: 8px;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 8px;
    z-index: 1201;
}
.navbar-toggle .bar {
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.navbar-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
    .main-navbar-vertical { height: 56px; }
    .navbar-icon img { height: 38px; width: 38px; }
    .navbar-list { gap: 18px; }
    .navbar-forum { min-width: 90px; margin-right: 0.5em; }
}
@media (max-width: 900px) {
    .navbar-toggle { margin-left: 0.5em; }
}
@media (max-width: 700px) {
    .navbar-toggle {
        display: flex;
        position: absolute;
        left: 64px;
        top: 0;
        z-index: 2003;
        margin-left: 0;
        margin-top: 6px;
    }
    .navbar-center { display: none !important; }
    .navbar-forum {
        position: fixed;
        right: 0;
        top: 0;
        margin: 0 0.5em 0 0;
        z-index: 2002;
    }
}
.fullscreen-navbar-menu {
    pointer-events: none;
    opacity: 0;
    transform: scale(0.98) translateY(-24px);
    transition: opacity 0.28s cubic-bezier(.7,-0.2,.3,1.1), transform 0.32s cubic-bezier(.7,-0.2,.3,1.1);
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(16,16,24,0.98);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fullscreen-navbar-menu.open {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1) translateY(0);
}
.fullscreen-navbar-menu .navbar-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    gap: 0.5em;
    margin: 0;
    padding: 0;
}
.fullscreen-navbar-menu .navbar-list li {
    width: auto;
    display: flex;
    justify-content: center;
    border: none;
    margin: 0;
    padding: 0;
}
.fullscreen-navbar-menu .navbar-list li a {
    min-width: 120px;
    max-width: 220px;
    display: block;
    padding: 10px 24px 8px 24px;
    font-size: 1.08em;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: none;
    border-radius: 12px;
    margin: 0 auto;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.fullscreen-navbar-menu .navbar-list li a:hover {
    background: linear-gradient(90deg, #23263a 0%, #4527a0 100%);
    color: #fffde7;
    box-shadow: 0 2px 12px 0 #4527a088;
}
@media (prefers-reduced-motion: reduce) {
    .navbar-toggle .bar { transition: none; }
    .fullscreen-navbar-menu { transition: none; }
    .main-navbar-vertical a::after { transition: none; }
}