 /* Navbar Styles */
    .navbar {
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        padding: 1.2rem 5%;
        background: rgba(10, 10, 15, 0.85);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        position: sticky; 
        top: 0; 
        z-index: 1000;
        border-bottom-color: var(--primary);
        animation: fadeInDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }

    .logo { 
        font-family: 'Rubik', sans-serif; 
        font-size: 1.8rem; 
        font-weight: 800; 
        letter-spacing: -1px; 
        background: linear-gradient(45deg, #fff, #ccc); 
        -webkit-background-clip: text; 
        -webkit-text-fill-color: transparent;
    }
    .logo span { 
        color: var(--primary); 
        -webkit-text-fill-color: var(--primary); 
    }

    .nav-links { 
        display: flex; 
        gap: 30px; 
        font-weight: 500; 
        font-size: 0.95rem; 
    }
    .nav-links a:hover { 
        color: var(--accent); 
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5); 
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Auth & User Styles (Desktop) */
    .auth-box-tactical {
        display: flex; 
        align-items: center; 
        gap: 12px; 
        background: rgba(255, 255, 255, 0.05);
        padding: 5px 15px; 
        border-radius: 4px; 
        border: 1px solid rgba(255, 255, 255, 0.05); 
        border-color: var(--primary);
    }
    
    .auth-label { 
        font-family: 'Teko', sans-serif; 
        font-size: 0.9rem; 
        color: var(--primary); 
        letter-spacing: 1px; 
    }
    
    .social-auth-links { 
        display: flex; 
        gap: 10px; 
    }
    
    .social-btn {
        width: 32px; 
        height: 32px; 
        display: flex; 
        align-items: center; 
        justify-content: center;
        color: #aaa; 
        background: rgba(255, 255, 255, 0.05); 
        border-radius: 3px;
        transition: 0.3s; 
        font-size: 1.1rem; 
        border: 1px solid transparent;
    }
    
    .social-btn:hover { 
        transform: translateY(-2px); 
        color: white; 
    }
    
    .social-btn.google:hover { 
        border-color: #4285F4; 
        color: #4285F4; 
    }
    
    .social-btn.discord:hover { 
        border-color: #5865F2; 
        color: #5865F2; 
    }

    .profile-display {
        display: flex; 
        align-items: center; 
        gap: 15px; 
        background: rgba(255, 255, 255, 0.02);
        padding: 5px 10px 5px 15px; 
        border-radius: 50px 4px 4px 50px; 
        border-right: 3px solid var(--primary);
    }
    
    .user-info-text { 
        display: flex; 
        flex-direction: column; 
        align-items: flex-end; 
    }
    
    .nav-username { 
        font-weight: 900; 
        font-size: 0.95rem; 
        color: white; 
        line-height: 1; 
    }
    
    .user-role-tag { 
        font-family: 'Teko', sans-serif; 
        font-size: 0.75rem; 
        color: var(--primary); 
        letter-spacing: 1px; 
    }
    
    .nav-avatar { 
        width: 38px; 
        height: 38px; 
        border-radius: 50%; 
        object-fit: cover; 
        border: 2px solid #222; 
    }
    
    .logout-link-tactical { 
        color: #444; 
        font-size: 1rem; 
        transition: 0.3s; 
    }
    
    .logout-link-tactical:hover { 
        color: #ff4444; 
    }

    /* Mobile Login Icon & Bubble */
    .mobile-login-icon {
        display: none;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--primary);
        border-radius: 6px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--primary);
        font-size: 1.2rem;
        transition: 0.3s;
        position: relative;
    }

    .mobile-login-icon:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

    .mobile-auth-bubble {
        display: none;
        position: absolute;
        top: 55px;
        left: 247%;
        transform: translateX(-50%);
        background: rgba(15, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid var(--primary);
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        z-index: 1002;
        min-width: 200px;
    }

    .mobile-auth-bubble.active {
        display: block;
        animation: bubbleIn 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    @keyframes bubbleIn {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    .mobile-auth-bubble::before {
        content: '';
        position: absolute;
        top: -9px;
        left: 13%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var(--primary);
    }

    .bubble-title {
        text-align: center;
        font-family: 'Teko', sans-serif;
        color: var(--primary);
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .bubble-auth-links {
        display: flex;
        gap: 12px;
        justify-content: center;
    }

    .bubble-auth-links .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Mobile User Display */
    .mobile-user-display {
        display: none;
        align-items: center;
        gap: 10px;
    }

    .mobile-user-display .nav-avatar {
        width: 36px;
        height: 36px;
    }

    .mobile-user-display .logout-link-tactical {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #888;
        font-size: 1rem;
    }

    .mobile-user-display .logout-link-tactical:hover {
        background: rgba(255, 77, 77, 0.1);
        border-color: #ff4444;
        color: #ff4444;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: none;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.02);
        border-bottom: 2px solid var(--primary);
        margin-bottom: 20px;
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .mobile-menu-logo img {
        height: 32px;
        width: 32px;
    }

    .mobile-menu-logo-text {
        font-family: 'Rubik', sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: -1px;
        background: linear-gradient(45deg, #fff, #ccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mobile-menu-logo-text span {
        color: var(--primary);
        -webkit-text-fill-color: var(--primary);
    }

    .mobile-menu-user {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-user-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-user-info img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid var(--primary);
        object-fit: cover;
    }

    .mobile-menu-user-details {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-username {
        font-weight: 700;
        font-size: 1rem;
        color: white;
    }

    .mobile-menu-role {
        font-family: 'Teko', sans-serif;
        font-size: 0.75rem;
        color: var(--primary);
        letter-spacing: 1px;
    }

    .mobile-menu-auth {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-auth-title {
        text-align: center;
        font-family: 'Teko', sans-serif;
        color: var(--primary);
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .mobile-menu-auth-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
    }

    .mobile-menu-auth-buttons .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .mobile-menu-logout {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        background: rgba(255, 77, 77, 0.1);
        border: 1px solid rgba(255, 77, 77, 0.3);
        border-radius: 6px;
        color: #ff6b6b;
        font-weight: 600;
        font-size: 0.95rem;
        transition: 0.3s;
        text-decoration: none;
    }

    .mobile-menu-logout:hover {
        background: rgba(255, 77, 77, 0.2);
        border-color: #ff4444;
        color: #ff4444;
    }

    /* Mobile Styles */
    @media (max-width: 1000px) {
        .mobile-menu-logout {
            display: block;
        }
        .navbar {
            padding: 1rem 4%;
            justify-content: space-between;
                    flex-direction: row-reverse;
        }

        /* Logo במרכז */
        .navbar > a.logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .logo {
            font-size: 1.3rem;
        }

        .logo img {
            height: 28px !important;
        }

        /* Hamburger בצד ימין (RTL) */
        .hamburger {
            display: flex;
            order: 3;
        }

        /* Desktop Auth - Hide */
        .auth-box-tactical,
        .profile-display {
            display: none !important;
        }

        /* Mobile Login Icon - Show בצד שמאל */
        .mobile-login-icon {
            display: flex;
            order: 1;
        }

        /* Mobile User Display - Show בצד שמאל */
        .mobile-user-display {
            display: flex;
            order: 1;
        }

        /* Navigation Links - נפתח מימין */
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 350px;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            padding: 0;
            gap: 0;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            border-left: 2px solid var(--primary);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links.active .mobile-menu-header {
            display: flex;
        }

        .nav-links a {
            font-size: 1.15rem;
            padding: 18px 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.2s;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.05);
            padding-right: 30px;
        }

        .user-area {
            display: contents;
        }
    }

    @media (max-width: 480px) {
        .navbar {
            padding: 0.9rem 3%;
        }

        .logo {
            font-size: 1.1rem;
        }

        .logo img {
            height: 24px !important;
        }

        .nav-links {
            width: 85%;
        }

        .mobile-auth-bubble {
            min-width: 180px;
        }
    }