/* Navbar Stilleri */
        .main-navbar {
            background: rgba(26, 11, 46, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(138, 43, 226, 0.2);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 0.75rem 0;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 0 10px rgba(138, 43, 226, 0.4),
                        0 0 20px rgba(138, 43, 226, 0.3),
                        0 0 30px rgba(138, 43, 226, 0.2);
        }

        .navbar-logo i {
            color: #8A2BE2;
        }

        .navbar-toggle {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .toggle-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .toggle-icon span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: #ffffff;
            transition: 0.3s ease;
        }

        .navbar-menu {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .menu-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .menu-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem;
            transition: 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .menu-link:hover,
        .menu-link.active {
            color: #ffffff;
        }

        .menu-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(45deg, #8A2BE2, #FF1493);
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.4),
                        0 0 20px rgba(138, 43, 226, 0.3),
                        0 0 30px rgba(138, 43, 226, 0.2);
        }

        .profile-link,
        .logout-link {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(138, 43, 226, 0.2);
        }

        .profile-link:hover,
        .logout-link:hover {
            background: rgba(26, 11, 46, 0.8);
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.4),
                        0 0 20px rgba(138, 43, 226, 0.3),
                        0 0 30px rgba(138, 43, 226, 0.2);
        }

        /* Mobil & Tablet Görünümü */
        @media (max-width: 1199px) {
            .navbar-toggle {
                display: block;
            }

            .navbar-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(26, 11, 46, 0.8);
                padding: 1rem;
                z-index: 100;
            }

            .navbar-menu.show {
                display: block;
            }

            .menu-links {
                flex-direction: column;
                gap: 0.8rem;
            }
        }

        /* Toggle button active durumu için */
        .navbar-toggle.active .toggle-icon span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .navbar-toggle.active .toggle-icon span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle.active .toggle-icon span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Language switcher stilleri lang/Lang.php içinden otomatik enjekte edilir
           (assets/css/lang-switcher.css) — her sayfa için garanti edilir. */